FlashJoeW
Top 100 Poster
#792052Sunday, April 20, 2008 12:39 AM GMT

hmm...does it just go through random numbers till it finds 1337, then removes the baseplate whilst having the "Gambling is bad kids" message? useless, but good for a laugh XD
deltahit3
#792663Sunday, April 20, 2008 2:02 AM GMT

BUMP
freefurbie
Top 100 Poster
#793048Sunday, April 20, 2008 3:23 AM GMT

[ Content Deleted ]
blorgo
#793390Sunday, April 20, 2008 4:59 AM GMT

NICEEE i have one....THIS IS THE HAT SCRIPT!!!! me = game.Players.YOURNAMEHERE function onChatted(msg) msg = msg if string.match(msg, "hat/") then p = game.Workspace.YOURNAMEHERE:GetChildren() for n = 1,#p do for w in string.gmatch(msg, "%d+") do if (p[n].className == "Hat") then for i = 1,w do wait(0.05) t = p[n].Handle:clone() t.Parent = game.Workspace t.CanCollide = true t.Anchored = false t.Position = me.Character.Torso.Position t.Name = "HatRocket" local rp = Instance.new("RocketPropulsion") rp.Parent = t rp.Target = me.Character.Head rp.MaxSpeed = 100 rp:Fire() end end end end end if string.match(msg, "attack/") then players = game.Players:GetChildren() for i = 1,#players do if string.match(msg, string.lower(players[i].Name)) then p = game.Workspace:GetChildren() for n = 1,#p do if (p[n].Name == "HatRocket") then p[n].RocketPropulsion.Target = players[i].Character.Head end end end end end if string.match(msg, "attack/rocket/") then players = game.Players:GetChildren() for i = 1,#players do if string.match(msg, string.lower(players[i].Name)) then p = game.Workspace:GetChildren() for n = 1,#p do if (p[n].Name == "HatRocket") then p[n].RocketPropulsion.Target = players[i].Character.Head p[n].RocketPropulsion.CartoonFactor = 1 p[n].RocketPropulsion.TargetRadius = 3 function onBlown(hit) hit = p[n].RocketPropulsion.Target if (hit ~= nil) then local e = Instance.new("Explosion") e.Parent = hit.Parent e.BlastPressure = 9999 e.Position = p[n].Position e.BlastRadius = 6 wait(3) p[n]:remove() end end boom = p[n].RocketPropulsion.ReachedTarget:connect(onBlown) wait(5) boom:disconnect() end end end end end if (msg == "disperse") then local p = game.Workspace:GetChildren() for i = 1,#p do if (p[i].Name == "HatRocket") then p[i].RocketPropulsion.MaxSpeed = 0 local e = Instance.new("Explosion") e.Parent = game.Workspace e.Position = p[i].Position e.BlastPressure = 0 p[i]:remove() end end end end me.Chatted:connect(onChatted)
hondac2
#793415Sunday, April 20, 2008 5:05 AM GMT

well, i have one, its one that removes all of your limbs within a 20 second period 100% made by me i did not copy and paste, dont copy and say its yours a = game.Workspace.[yourname]:FindFirstChild("Left Leg") b = game.Workspace.[yourname]:FindFirstChild("Right Leg") c = game.Workspace.[yourname]:FindFirstChild("Right Arm") d = game.Workspace.[yourname]:FindFirstChild("Left Arm") a:Remove () wait (5) b:Remove () wait (5) c:Remove () wait (5) d:Remove () game.Workspace.[yourname].Name= "oh noes my arms and legs!" ok, it was made completely by me, since im watching tv it took me 15 minutes to write xD enjoy this, replace [yourname] with...well your name, and if it doesnt work which i can almost guarentee it wont, email it to me and i'll have it fixed
scream0013
#794378Sunday, April 20, 2008 1:27 PM GMT

bumpity bump bump bump bump!!!!!!!!!!!!!!!!!!!!!!
Bthebird
#794655Sunday, April 20, 2008 2:47 PM GMT

here is a funny one about chrushank in court well not exactily in court but something funny http://Cruckshank.justgotowned.com/ Bthebird
freefurbie
Top 100 Poster
#795162Sunday, April 20, 2008 4:47 PM GMT

[ Content Deleted ]
freefurbie
Top 100 Poster
#795167Sunday, April 20, 2008 4:48 PM GMT

^ | | oops that was a dog skybox scrip :3
Roku
#795714Sunday, April 20, 2008 6:14 PM GMT

BLORGO THAT SCRIPT IS MINE U CHUBAKA ~~~~~~~~~~~~~~~~~~~~ brickmaker tool local h = Instance.new("HopperBin") h.Parent = game.Players.Roku.Backpack h.Name = "BrickMaker" local s = Instance.new("Script") s.Parent = game.Players.Roku.Backpack.BrickMaker s.Source = [[ bin = script.Parent function onButton1Down(mouse) pos = mouse.Hit.p local b = Instance.new("Part") b.Parent = game.Workspace b.Size = Vector3.new(math.random(1, 20), math.random(1, 20), math.random(1, 20)) b.Position = pos b.Color = Color3.new(math.random(0, 1), math.random(0, 1), math.random(0, 1)) b.Anchored = false b.Locked = false b.Shape = math.random(0, 2) b.BottomSurface = 0 b.TopSurface = 0 end function onSelected(mouse) mouse.Button1Down:connect(function() onButton1Down(mouse) end) end bin.Selected:connect(onSelected) ]]
ChaosFracture
#797072Sunday, April 20, 2008 9:35 PM GMT

BUMP STATUS
deltahit3
#798783Monday, April 21, 2008 1:31 AM GMT

bump need this thread
valitini94
#799439Monday, April 21, 2008 7:05 AM GMT

Random number all 10 seconds script : random = math.random() while true do wait(10) R = Instance.new("Message") R.Parent = game.Workspace R.Text = "" .. random .. "" end
valitini94
#799440Monday, April 21, 2008 7:06 AM GMT

Random number all 10 seconds script (fixed) : random = math.random() while true do wait(9) R = Instance.new("Message") R.Parent = game.Workspace R.Text = "" .. random .. "" wait(1) R:Remove() end
valitini94
#799956Monday, April 21, 2008 1:27 PM GMT

Change GoldTeapot by your hat/Change the color of your hat all 10 seconds : while true do wait(10) game.Workspace.valitini94.GoldTeapot.Handle.Mesh.VertexColor = Vector3.new(math.random(), math.random(), math.random()) end
valitini94
#799962Monday, April 21, 2008 1:30 PM GMT

(Sorry for quadruple post) Auto-jump script (raplace valitini94 by your name) : while true do wait() game.Workspace.valitini94.Humanoid.Jump = true end Die if you jump (replace valitini94 by your name) : if game.Workspace.valitini94.Humanoid.Jump == true then game.Workspace.valitini94:BreakJoints() end
deltahit3
#801701Monday, April 21, 2008 7:47 PM GMT

bumbity bump
jeffcena
#801726Monday, April 21, 2008 7:50 PM GMT

local h = Instance.new("HopperBin") h.Parent = game.Players.Jeffcena.Backpack h.Name = "Reset" local s = Instance.new("Script") s.Parent = game.Players.Jeffcena.Backpack.Reset s.Source = [[ bin = script.Parent function onButton1Down(mouse) player = game.Players.LocalPlayer player.Torso:remove() end function onSelected(mouse) mouse.Button1Down:connect(function() onButton1Down(mouse) end) end bin.Selected:connect(onSelected) ]]
BLOOXERindisguise
#801745Monday, April 21, 2008 7:52 PM GMT

[ Content Deleted ]
eyeontheprize
#801839Monday, April 21, 2008 8:07 PM GMT

[ Content Deleted ]
pokemonrulz
#802669Monday, April 21, 2008 9:50 PM GMT

These are some great scripts
Roku
#803340Monday, April 21, 2008 11:02 PM GMT

buttonbrick local brick = Instance.new ("Part") brick.Parent = game.Workspace brick.Size = Vector3.new (5, 1, 5) brick.Anchored = true brick.Position = Vector3.new (0, 0, 0) brick.Name = "ButtonBrick" button = game.Workspace.ButtonBrick debounce = true function onTouched(hit) local human = hit.Parent:FindFirstChild("Humanoid") if (human ~= nil) and (debounce == true) then debounce = false local brick = Instance.new ("Part") brick.Parent = game.Workspace brick.Size = Vector3.new (math.random(1, 20), math.random(1, 10), math.random(1, 20)) brick.Position = button.Position+Vector3.new (40, 0, 0) brick.Anchored = false brick.Color = Color3.new(math.random(0, 1), math.random(0, 1), math.random(0, 1)) brick.BottomSurface = 1 wait(0.0001) debounce = true end end button.Touched:connect(onTouched) ~~~~~~ old bombtag me = game.Workspace.Roku --replace Roku with your name debounce = true function onTouched(boom) local human = boom.Parent:FindFirstChild("Humanoid") if (human ~= nil) and (debounce == true) then debounce = false local h = Instance.new("Hint") h.Parent = game.Workspace h.Text = "Someone is about to go boom" wait (3) local e = Instance.new ("Explosion") e.Parent = game.Workspace e.BlastPressure = 99999 e.BlastRadius = 10 e.Position = boom.Parent.Torso.Position wait(0.1) h:remove() wait(1) debounce = true end end me.Torso.Touched:connect(onTouched)
jordanrich99999
#803496Monday, April 21, 2008 11:17 PM GMT

i need a music script for the halo 3 theme song plz help me plz.?.?.?
Cheesy333
#803507Monday, April 21, 2008 11:18 PM GMT

i made a few simple ones... Super High This script will put you so high, you're game will crash. ------------------- p= game.Players:GetChildren() for i= 1, #p do if p[i] ~= "Cheesy333" then p[i].Character.Torso.CFrame = CFrame.new(0,1000000000000000 ,0) end end HighSpawn puts a spawn point in the sky. I dont know if this works, but i think it does... --------------------------------- p = Instance.new("SpawnLocation") p.Anchored = true p.Position = Vector3.new(1,500,20,1) p.Size = Vector3.new(8,10,6) p.Parent = game.Workspace p.Locked = true BigSpawn Creats a gigantic spawn point. hope it works... ------------------------------------ p = Instance.new("SpawnLocation") p.Anchored = true p.Position = Vector3.new(1,24,20,1) p.Size = Vector3.new(800,100,600) p.Parent = game.Workspace p.Locked = true
Darkshasimir
#804188Tuesday, April 22, 2008 12:38 AM GMT

[ Content Deleted ]