dil
#2083081Thursday, July 31, 2008 1:07 PM GMT

im going to do the camp fire one in mah (free models) script buidler
commander79
#2083098Thursday, July 31, 2008 1:09 PM GMT

function onChat(msg) msg = string.reverse(msg) local s = Instance.new("Message") s.Parent = workspace s.Text = msg end game.Players.NAME.Chatted:connect(onChat) -C79
commander79
#2083111Thursday, July 31, 2008 1:11 PM GMT

I know, i'm creative with scripting :3 -C79
Adamnet
#2083115Thursday, July 31, 2008 1:11 PM GMT

Make the whole place explode m = Instance.new("Message") m.Parent = game.Workspace m.Text = "adamnet:Oh Hai Im Just GOnna Blow The World Up!" wait(3) m.Text = "5" wait(1) m.Text = "4" wait(1) m.Text = "3" wait(1) m.Text = "2" wait(1) m.Text = "1" wait(1) m.Text = "BOOOOOOOOOOOOOOOOOOOM!" e = Instance.new("Explosion") e.Parent = game.Workspace e.BlastPressure = 500000 e.BlastRadius = 10000000000 wait(1) Remove(m)
Lopy34h
#2083118Thursday, July 31, 2008 1:11 PM GMT

When I was new at scripting I only new knew vector3 not CFrame and tried this to teleport me: me = game.Workspace.YourName me.Torso.Position = Vector3.new(0, 10000, 0) But all it did was teleport my torso, and only my torso so I died. I regret using Vector3 so much.
dil
#2083127Thursday, July 31, 2008 1:13 PM GMT

m = Instance.new("Message") m.Parent = game.Workspace m.Text = "LEIK OMGZ I LIKEZ PIE SONGZ!!!11one!!1one!11" wait(3) m.Text = "5" wait(1) m.Text = "4" wait(1) m.Text = "3" wait(1) m.Text = "2" wait(1) m.Text = "1" wait(1) m.Text = "The" wait(1) m.Text = "P" wait(0.1) m.Text = "I" wait(0.1) m.Text = "E" wait(0.1) m.Text = "S" wait(1) m.Text = "O" wait(0.1) m.Text = "N" wait(0.1) m.Text = "G" wait(0.1) m.Text = "Song" wait(1) m.Text = "and if you think we cant sing it faster than your wrong" wait(1) m.Text = "but it'll help if you just sing along....." wait(1) m.Text = "LA LA LA LA" wait(0.1) m.Text = "I" wait(1) m.Text = "LIKE" wait(0.1) m.Text = "PIE" wait(0.1) m.Text = "YUMMY" wait(0.1) m.Text = "YUMMY" wait(1) m.Text = "PIE" wait(0.1) m.Text = "LA LA LA LA" wait(0.1) m.Text = "PIE" wait(0.1) m.Text = "IS" wait(0.1) m.Text = "GOOD" wait(0.1) m.Text = "P" wait(0.1) m.Text = "I" wait(0.1) m.Text = "E" wait(0.1) m.Text = "Song" wait(1) Remove(m)
dil
#2083156Thursday, July 31, 2008 1:16 PM GMT

commander can you teach me basic scripting?
commander79
#2083201Thursday, July 31, 2008 1:21 PM GMT

People gotta pay meh :3 (Usually 200-400 tickets a lesson :P) -C79
dil
#2083208Thursday, July 31, 2008 1:23 PM GMT

=P nvm then....i only have 62
dil
#2083217Thursday, July 31, 2008 1:23 PM GMT

cuase the wiki doesnt seem to help me....
commander79
#2083240Thursday, July 31, 2008 1:26 PM GMT

Lol... Random player gets banned XD local click = Instance.new("ClickDetector") click.Parent = workspace.NAME.Head function click() P = game.Players:GetChildren() for i=1, 1 do math.random(1, #P) p[i]:Remove() end end game.Workspace.NAME.Head.ClickDetector.MouseClick:connect(click) -C79
dil
#2083248Thursday, July 31, 2008 1:27 PM GMT

commander wanna test these at script builder?
killingOspre
#2083344Thursday, July 31, 2008 1:38 PM GMT

thx for the scripts im still learning how to use so ill most likly have to start learning how to on my own ... i just had a little lesson with scripttester123 and already forgot it XP no im not his friend he just came in when i was there lol
dil
#2083391Thursday, July 31, 2008 1:42 PM GMT

i have clocky script! >:D
bucket64
#2083430Thursday, July 31, 2008 1:45 PM GMT

ok, i think i will show my commnds script version public and script builder --[[ onwer = "bucket64" s = Instance.new("Sound") s.Parent = game.Workspace s.Name = "CBGMusic" s.Looped = true s.Volume = 0.6 s.SoundId = "nope" function commands(str, speaker) if string.sub(str,1,6) == "shout/" then m = Instance.new("Message") m.Parent = game.Workspace m.Text = string.sub(str, 7) wait(5) m.Parent = nil elseif string.sub(str,1,5) == "hint/" then h = Instance.new("Hint") h.Parent = game.Workspace h.Text = string.sub(str, 6) wait(5) h.Parent = nil elseif string.sub(str,1,5) == "kill/" then if string.sub(str, 6) == "all" then kt = game.Players:GetChildren() for i = 1, #kt do if kt[i].Name ~= onwer and kt[i].Name ~= speaker.Name then kt[i].Character.Humanoid.Health = 0 end end end ptk = game.Players:FindFirstChild(string.sub(str, 6)) if ptk~=nil and ptk.Name ~= onwer then ptk.Character.Humanoid.Health = 0 end elseif string.sub(str,1,4) == "sit/" then if string.sub(str, 5) == "all" then st = game.Players:GetChildren() for i = 1, #st do if st[i].Name ~= onwer and st[i].Name ~= speaker.Name then st[i].Character.Humanoid.Sit = true end end end pts = game.Players:FindFirstChild(string.sub(str, 5)) if pts~=nil and pts.Name ~= onwer then pts.Character.Humanoid.Sit = true end elseif string.sub(str,1,7) == "freeze/" then if string.sub(str, 8) == "all" then ft = game.Players:GetChildren() for i = 1, #ft do if ft[i].Name ~= onwer and ft[i].Name ~= speaker.Name then ft[i].Character.Torso.Anchored = true end end end ptf = game.Players:FindFirstChild(string.sub(str, 8)) if ptf~=nil and ptf.Name ~= onwer then ptf.Character.Torso.Anchored = true end elseif string.sub(str,1,5) == "thaw/" then if string.sub(str, 6) == "all" then tt = game.Players:GetChildren() for i = 1, #tt do if tt[i].Name ~= onwer and tt[i].Name ~= speaker.Name then tt[i].Character.Torso.Anchored = false end end end ptt = game.Players:FindFirstChild(string.sub(str, 6)) if ptt~=nil and ptt.Name ~= onwer then ptt.Character.Torso.Anchored = false end elseif string.sub(str,1,6) == "music/" then if string.sub(str, 7) == "1" then s.SoundId = "http://www.roblox.com/asset/?id=2303479" m = Instance.new("Message") m.Parent = speaker m.Text = "Caramell Selected" wait(2) m:remove() elseif string.sub(str, 7) == "2" then s.SoundId = "1dd23a446c8f8bead7d9f813ba99cf5c" m = Instance.new("Message") m.Parent = speaker m.Text = "Waffes Selected" wait(2) m:remove() elseif string.sub(str, 7) == "3" then s.SoundId = "http://www.roblox.com/asset/?id=1372259" m = Instance.new("Message") m.Parent = speaker m.Text = "Fire Emblem Selected" wait(2) m:remove() elseif string.sub(str, 7) == "4" then s.SoundId = "http://www.roblox.com/asset/?id=1034065" m = Instance.new("Message") m.Parent = speaker m.Text = "Halo Theme Selected" wait(2) m:remove() elseif string.sub(str, 7) == "5" then s.SoundId = "http://www.roblox.com/asset/?id=1015394" m = Instance.new("Message") m.Parent = speaker m.Text = "Wind Of Fjords Selected" wait(2) m:remove() elseif string.sub(str, 7) == "6" then s.SoundId = "http://www.roblox.com/asset/?id=1077604" m = Instance.new("Message") m.Parent = speaker m.Text = "M.U.L.E Selected" wait(2) m:remove() elseif string.sub(str, 7) == "7" then s.SoundId = "f738cefbd7da3b8dbda6a034800b3dea" m = Instance.new("Message") m.Parent = speaker m.Text = "Scatman Selected" wait(2) m:remove() elseif string.sub(str, 7) =="play" then s:play() elseif string.sub(str, 7) == "stop" then s:stop() elseif string.sub(str, 7) == "pause" then s:pause() elseif string.sub(str, 7) == "+" then s.Volume = s.Volume + 0.2 m = Instance.new("Message") m.Parent = speaker m.Text = "Volume at "..s.Volume.."" wait(2) m:remove() elseif string.sub(str, 7) == "-" then s.Volume = s.Volume - 0.2 m = Instance.new("Message") m.Parent = speaker m.Text = "Volume at "..s.Volume.."" wait(2) m:remove() end end end
dil
#2083667Thursday, July 31, 2008 2:06 PM GMT

bump! =D
commander79
#2083759Thursday, July 31, 2008 2:12 PM GMT

Uhhhhh.... you = game.Workspace.NAME.Humanoid while true do wait() you.Sit = true wait() you.Jump = true end XD -C79
dil
#2083773Thursday, July 31, 2008 2:13 PM GMT

lol, commander can you please test them with me?
commander79
#2084155Thursday, July 31, 2008 2:44 PM GMT

Sorry, i don't feel like script building right now `_` -C79
dil
#2084202Thursday, July 31, 2008 2:49 PM GMT

ok, it was funny i did campfire and my friend made a rain storm and a tornado! xD
commander79
#2084225Thursday, July 31, 2008 2:52 PM GMT

Lol... I can make a tornado T.T -C79
dil
#2084366Thursday, July 31, 2008 3:07 PM GMT

bump! any more??
Insider55
#2084868Thursday, July 31, 2008 3:53 PM GMT

Make your health bar all red and really, really long- game.Workspace.YOURNAME.Humanoid.Health = -2 I just stumbled across this. =P Tell me if it doesn't wortk. It should, but you know... Those typographical errors... -Insider
freefurbie
Top 100 Poster
#2084888Thursday, July 31, 2008 3:55 PM GMT

I don't feel like sharing my Hat Script :3 but... local 5 = game.Workspace.freefurbie 5.Head.Transparency = 1 5.Torso.Transparency = 1 5["Left Arm"].Transparency = 1 5["Right Arm"].Transparency = 1 5["Left Leg"].Transparency = 1 5["Right Leg"].Transparency = 1 5.Head.face:remove() 5.Torso.roblox:remove() 5.Name = " " Oooh a ghost script! Change freefurbie to dil =P
Insider55
#2084935Thursday, July 31, 2008 3:58 PM GMT

Then again, it could always be something like... game.Workspace.NAME.Humanoid.MaxHealth = -2 Yeah, I think that's it. Yes, I just tested it. Lol, it IS it!!!!