Welcome, Guest
You have to register before you can post on our site.

Username
  

Password
  





Search Forums

(Advanced Search)

Forum Statistics
» Members: 8,079
» Latest member: seanac11
» Forum threads: 10,350
» Forum posts: 91,276

Full Statistics

Online Users
There are currently 241 online users.
» 0 Member(s) | 239 Guest(s)
Bing, Google

Latest Threads
I'm leaving the site too....
Forum: 2DWorlds Discussion
Last Post: Jacob_
07-03-2023, 04:59 AM
» Replies: 12
» Views: 6,299
hi there.
Forum: 2DWorlds Discussion
Last Post: Jacob_
01-03-2020, 04:30 AM
» Replies: 1
» Views: 740
obroke
Forum: Current Games
Last Post: FrancisSah
09-06-2017, 10:11 AM
» Replies: 0
» Views: 20,523
fcouldn't
Forum: Current Games
Last Post: FrancisSah
09-06-2017, 09:02 AM
» Replies: 0
» Views: 8,231
qhow
Forum: Current Games
Last Post: PhilipShums
09-06-2017, 07:25 AM
» Replies: 0
» Views: 2,110
zstone
Forum: Current Games
Last Post: TimothyTox
09-06-2017, 07:03 AM
» Replies: 0
» Views: 978
vbit
Forum: Current Games
Last Post: FrancisSah
09-06-2017, 03:00 AM
» Replies: 0
» Views: 962
sildenafil 100 mg sandoz
Forum: Current Games
Last Post: RichardLen
09-06-2017, 12:28 AM
» Replies: 0
» Views: 1,172
mhis
Forum: Current Games
Last Post: TimothyTox
09-05-2017, 04:09 PM
» Replies: 0
» Views: 985
sildenafil citrate 100mg ...
Forum: Current Games
Last Post: Waltertog
09-05-2017, 12:27 PM
» Replies: 0
» Views: 939

 
  Yay! I know how to get detail in skin!
Posted by: Fish - 04-15-2011, 05:07 PM - Forum: 2DWorlds Discussion - Replies (5)

http://buildism.net/items/Colorful-NINJA-/1216

I used a ROBLOX shirt template! Big Grin How is it? =3 Gewd? Would Jacob_ put me on teh banner? <:3

Print this item

  As usual... I never get to spend time with any of you D:
Posted by: AK-47 - 04-15-2011, 04:50 PM - Forum: 2DWorlds Discussion - Replies (6)

Going to sleep => Most of you will log in.

Wakin' up in the morning => Most already log off.

I am :foreveralone:

Print this item

  How to you change your signature?
Posted by: Fish - 04-15-2011, 04:44 PM - Forum: 2DWorlds Discussion - Replies (7)

Also how do you get a picture on your signature? Big Grin TY!

Print this item

  Question.
Posted by: Fish - 04-15-2011, 04:37 PM - Forum: 2DWorlds Discussion - Replies (12)

How old should you be to play this game? =3 Question.

Print this item

  This is a script from ROBLOX...
Posted by: Fish - 04-15-2011, 04:05 PM - Forum: Scripting - Replies (5)

I have no idea how to script. Ok.. My friend on ROBLOX gave me this it is suppost to be a water tool that brings water bricks from the ground..


tool = Instance.new("Tool")
Handle = Instance.new("Part")

Handle.Shape = "Ball"
Handle.formFactor = 0
Handle.TopSurface = 0
Handle.BottomSurface = 0
Handle.Locked = true
Handle.Transparency = 0
Handle.Reflectance = 0
Handle.Name = "Handle"
Handle.BrickColor = BrickColor.new("Cyan")
Handle.Transparency = 0.3
Handle.Size = Vector3.new(1,1,1)
Handle.Parent = tool


RockFolder = Instance.new("Model")
RockFolder.Name = "Rocks"
RockFolder.Parent = Workspace


function Sound(SoundId)
s = Instance.new("Sound")
s.SoundId = SoundId
s.Name = "ToolSound"
s.Parent = Handle
s.Pitch = 1
s.Volume = 1
return s
end

Engage = Sound("http://www.roblox.com/asset/?id=11450310")

RockFolder.ChildAdded:connect(function(Stone)
Stone.Touched:connect(function (hit)
if hit.Parent:findFirstChild("Humanoid") ~= nil and hit.Parent.Name ~= tool.Parent.Name then
hit.Parent.Humanoid.Health = hit.Parent.Humanoid.Health-100
hit.Parent.Humanoid.Sit = true
hit.Parent.Torso.Velocity = Vector3.new(math.random(-0,00),math.random(125,150),math.random(-00,00))
end
end)
Stone.CFrame = Stone.CFrame*CFrame.new(0,0,0)
for i=1,25 do
Stone.CFrame = Stone.CFrame*CFrame.new(0,0.4,0)
wait()
end
wait(0.05)
for i=1,25 do
Stone.CFrame = Stone.CFrame*CFrame.new(0,-0.4,0)
wait()
end
Stone:remove()
end)



function Stone(CFRAME,Number)
S = Instance.new("Part")
S.Name = "Rock"
S.formFactor = 0
S.Anchored = true
S.TopSurface = "Smooth"
S.BottomSurface = "Smooth"
S.Locked = true
S.Transparency = 0.3
S.Reflectance = 0
S.CanCollide = true
S.Size = Vector3.new(math.random(02,07),math.random(20,25),math.random(02,07))
S.BrickColor = BrickColor.new("Cyan")
S.CFrame = CFRAME*CFrame.new(0,0,Number*10)*CFrame.fromEulerAnglesXYZ(2*math.pi/360*math.random(-20,20),2*math.pi/360*math.random(-500,500),2*math.pi/360*math.random(-20,20))
S.Parent = RockFolder

end


D = false

tool.Activated:connect(function()
if D == true then return end
Engage:play()
D = true
Dir = tool.Parent.Torso.CFrame
print(Dir)
for i=1,10 do
Stone(Dir,i*-1)
wait(0.05)
end
D = false
end)

Player = game.Players.Fish
tool.Parent = Player.Backpack
RockFolder.Parent = Player.Character
tool.Name = "_-_=+.?[}"
--[[p = Instance.new("Part")
p.Parent = Workspace
p.Anchored = true
p.BottomSurface = "Smooth"
p.Position = Vector3.new(10, 50, 20)
p2 = p:clone()
p2.Parent = Workspace
p2.Position = Vector3.new(20, 15, 2)
a = Instance.new("Part")
a.Parent = Workspace
a.Anchored = true
a.TopSurface = "Smooth"
a.BottomSurface = "Smooth"
a.BrickColor = BrickColor.new("Really red")
a.Size = Vector3.new(1,((p.Position - p2.Position).magnitude),1)
a.CFrame = CFrame.new((p1.Position+ p2.Position)/2, p1.Position)*CFrame.fromEulerAnglesXYZ(math.pi/2, 0, 0)



]]




Is they any way this can get in a giver? Thank You! Smile


Oh sorry! Make this into a buildism script! You don't need sound! Big Grin Sorry! xD

Print this item

  Im alone T_T
Posted by: Micky - 04-15-2011, 03:12 PM - Forum: 2DWorlds Discussion - Replies (11)

Oh, well.....
*hears the wind blow inside the empty forum*
Wow, this is calmly!

Print this item

  VALVe ARG.
Posted by: DSiDewd - 04-15-2011, 02:36 PM - Forum: Video Games - Replies (2)

http://valvearg.com/wiki/Valve_ARG_Wiki
Creepy... Many think the countdown timer leads to Portal 2's early release.


Click on this guy's http://steamcommunity.com/profiles/76561...reenshots/ screenshots.

Print this item

  ITT: Post what song you are listening to right now
Posted by: Bramwell - 04-15-2011, 02:24 PM - Forum: General Discussion - Replies (10)

Print this item

  Skipping school today.
Posted by: Bramwell - 04-15-2011, 02:04 PM - Forum: General Discussion - Replies (14)

I missed the bus, my parents aren't home, and I guess I just didn't want to go to school today. I'm not necessarily proud of doing this, but I make good grades, and besides, I don't feel well today anyway. My mom doesn't usually get back until after I get home from school, so she shouldn't find out.

Print this item

Brick hi im new
Posted by: mudkip - 04-15-2011, 01:26 PM - Forum: Introduce Yourself - Replies (6)

:gun_bandana:hiya i just wana say hi

Print this item