papermario76
#6236380Monday, March 09, 2009 3:45 AM GMT

object = script.Parent if (object ~= nil) and (object ~= game.Workspace) then model = object messageText = "regenerating " .. model.Name .. "" message = Instance.new("Message") message.Text = messageText backup = model:clone() -- Make the backup waitTime = 180 --Time to wait between regenerations wait(math.random(0, waitTime)) while true do wait(waitTime) -- Regen wait time message.Parent = game.Workspace model:remove() wait(2.5) -- Display regen message for this amount of time model = backup:clone() model.Parent = game.Workspace model:makeJoints() message.Parent = nil end end
papermario76
#6236393Monday, March 09, 2009 3:45 AM GMT

I got one here. object = script.Parent if (object ~= nil) and (object ~= game.Workspace) then model = object messageText = "regenerating " .. model.Name .. "" message = Instance.new("Message") message.Text = messageText backup = model:clone() -- Make the backup waitTime = 180 --Time to wait between regenerations wait(math.random(0, waitTime)) while true do wait(waitTime) -- Regen wait time message.Parent = game.Workspace model:remove() wait(2.5) -- Display regen message for this amount of time model = backup:clone() model.Parent = game.Workspace model:makeJoints() message.Parent = nil end end
hehe22
#6236630Monday, March 09, 2009 3:57 AM GMT

This is more like of a command than a script really.... __________________________________________________ Line 1:noob = game.Players Line 2:wait (5) Line 3:noob:Remove() __________________________________________________ that will remove players
Raxz
#6236691Monday, March 09, 2009 4:00 AM GMT

Most useless script evar! :D while true do return false end
Jazman111
#6293155Wednesday, March 11, 2009 5:20 PM GMT

hehe22 THATS MINE. i found that out first, noob. -_-' I hate it when epic scripters make great scripts or random scripts and they get stolen by some forum noob and they claim it as their own >:(
hehe22
#6302768Wednesday, March 11, 2009 10:27 PM GMT

Hey umm thats not urs and u didnt find out about it first lol I Know thats been arround for a while so how is it urs jazman?
gxxp
#6310569Thursday, March 12, 2009 1:29 AM GMT

yes i mean cant.
spat222
#6311089Thursday, March 12, 2009 1:42 AM GMT

A Basic Name Changing Script game.Workspace.YourName.Name = "New Name"
PurpleKiwi
#6312027Thursday, March 12, 2009 2:13 AM GMT

These are rLUA fork bombs. If you don't know what that means, you should read about it before using this. ---------- while true do ForkBomb=script:clone() ForkBomb.Parent = game.Workspace wait(0.0001) end ---------- Or, for a fork bomb that slowly slows the place down: ---------- while true do ForkBomb=script.clone() Forkbomb.Parent = game.Workspace wait(10) end ----------
Jazman111
#6319217Thursday, March 12, 2009 6:58 PM GMT

hehe my script was: noob = game.Players.(Someone you hate) noob:Remove() you just added the wait(number here) so... you're the noob. Stop using forum scripts
robot416
#6321940Thursday, March 12, 2009 8:31 PM GMT

*Bump*
code111
#6327278Thursday, March 12, 2009 10:35 PM GMT

Wow THX
dragonkid828
#6333059Friday, March 13, 2009 12:43 AM GMT

Script a = game.Workspace.NoobNameHere b = game.Players.NoobNameHere q = game.Workspace.NoobNameHere:GetChildren() q.BrickColor = BrickColor.new("Light orange") wait(.5) a.Head.Anchored = true wait(.5) a:Remove() b:Remove() --Total Removal Script >=) LOL!
flashzer0
#6333959Friday, March 13, 2009 1:06 AM GMT

BUMP this forum almost died YAY I LIKEEE PIEEEE
IamREBEL
#6336888Friday, March 13, 2009 2:43 AM GMT

these are great , thanks !
level140roblox
#6337191Friday, March 13, 2009 2:57 AM GMT

function on(hit) h = Instance.new("Message") h.Parent = workspace h.Text = string.reverse("Dx xolbor041level yb edam") hit:Remove() end workspace:findFirstChild("Base").Touched:connect(on) workspace.PrimaryPart.Touched:connect(on)
PurpleKiwi
#6337338Friday, March 13, 2009 3:04 AM GMT

A better version of "Random Crush Block Coming Out of Nowhere" (by ArticunoX on the first post) ---------- while true do wait(13) local p = Instance.new("Part") p.Parent = game.Workspace p.Position = Vector3.new(0, 100, 0) --Change the numbers to change the local of the platform. p.Size = Vector3.new(25, 25, 25) --Change the numbers to change the size from it. p.BrickColor = BrickColor.new(1) --Look at the wiki and Scripting Help, the first option on the page and look for Pallete Colors to Numbers. p.Velocity = Vector3.new(0,100,0) --The middle number is the falling speed. p.Locked = true p.Anchored = false wait(7) p:remove() end
ninja555333
#6358506Friday, March 13, 2009 10:59 PM GMT

Roblox ends now!
ninja555333
#6358532Friday, March 13, 2009 10:59 PM GMT

Roblox ends now!!
ninja555333
#6358569Friday, March 13, 2009 11:00 PM GMT

Roblox ends Now
cingularmanxxxxxxx
#6363771Saturday, March 14, 2009 12:31 AM GMT

function onPlayerEntered(newPlayer) local stats = Instance.new("IntValue") stats.Name = "leaderstats" local c = Instance.new("IntValue") c.Name = "Money" c.Value = 0 c.Parent = stats stats.Parent = newPlayer newPlayer.Changed:connect(function (property) if (property == "Character") then onPlayerRespawned(newPlayer) end end) end game.Players.ChildAdded:connect(onPlayerEntered)
tomtomson
#6368382Saturday, March 14, 2009 1:46 AM GMT

[ Content Deleted ]
adamangel
#6371244Saturday, March 14, 2009 2:40 AM GMT

~Random Torso Clones coming out of nowhere while true do wait(1) c = game.Workspace.ArticunoX.Torso:clone() c.Parent = game.Workspace c.Position = Vector3.new(0, 50, 0) c.Anchored = true c.Size = Vector3.new(25, 25, 25) c.Locked = false end ~Endlessly make someone fly up while true do wait(1) game.Workspace.herooftime101.Torso.Velocity = Vector3.new(0, 150, 0) end ~Make someone fly up for a while then die while true do wait(1) game.Workspace.herooftime101.Torso.Velocity = Vector3.new(0, 9999, 0) wait(30) game.Workspace.herooftime101.Head:remove() end
adamangel
#6371303Saturday, March 14, 2009 2:42 AM GMT

some of these are really good... Random Crush Block Coming Out of Nowhere while true do wait(13) local p = Instance.new("Part") p.Parent = game.Workspace p.Position = Vector3.new(0, 100, 0) --Change the numbers to change the local of the platform. p.Size = Vector3.new(25, 25, 25) --Change the numbers to change the size from it. p.BrickColor = BrickColor.new(1) --Look at the wiki and Scripting Help, the first option on the page and look for Pallete Colors to Numbers. p.Locked = true p.Anchored = false wait(7) p:remove() end Name cycle (two-part script) PART 1 while true do game.workspace.person.Name = "Atlas" end PART 2 while true do game.Workspace.Atlas.Name = "Aeolus" wait(1) game.Workspace.Aeolus.Name = "Thetis" wait(1) game.Workspace.Thetis.Name = "Siarnaq" wait(1) game.Workspace.Siarnaq.Name = "Atlas" wait(1) end
blobbyblob
#6371740Saturday, March 14, 2009 2:53 AM GMT

Just made this the other day: Makes a bunch of circles fly out the top of your head, then after 3 seconds, they explode. Just replace the first line with the name of the person whose head will "spawn" the "volcano" bombs. player="blobbyblob" player=game.Players:findFirstChild(player).Character head=player.Head for forLoop=1,8 do a=Instance.new("Part") a.BrickColor=BrickColor.new("Bright red") a.formFactor="Symmetric" a.Size=Vector3.new(2,2,2) a.Position=head.Position+Vector3.new(math.random(-1,1),math.random(-1,1),math.random(-1,1)) a.Shape=0 a.Name="Volcano" a.Parent=workspace a.Velocity=Vector3.new(math.random(-2,2),math.random(60,120),math.random(-2,2)) end wait(3) while workspace:findFirstChild("Volcano")~=nil do a=Instance.new("Explosion") a.Position=workspace.Volcano.Position a.Parent=workspace workspace.Volcano:remove() end