|
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
|
|
|
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
|
|
hehe22Join Date: 2008-08-19 Post Count: 142 |
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 |
|
RaxzJoin Date: 2008-12-20 Post Count: 3432 |
Most useless script evar! :D
while true do
return false
end |
|
Jazman111Join Date: 2008-12-28 Post Count: 4300 |
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 >:( |
|
hehe22Join Date: 2008-08-19 Post Count: 142 |
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? |
|
gxxpJoin Date: 2008-01-30 Post Count: 215 |
yes i mean cant. |
|
spat222Join Date: 2007-12-02 Post Count: 265 |
A Basic Name Changing Script
game.Workspace.YourName.Name = "New Name" |
|
|
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
---------- |
|
Jazman111Join Date: 2008-12-28 Post Count: 4300 |
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
|
|
robot416Join Date: 2008-08-17 Post Count: 139 |
*Bump* |
|
code111Join Date: 2009-01-27 Post Count: 9 |
Wow THX |
|
|
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! |
|
flashzer0Join Date: 2009-01-24 Post Count: 321 |
BUMP this forum almost died YAY I LIKEEE PIEEEE |
|
IamREBELJoin Date: 2009-02-24 Post Count: 628 |
these are great , thanks !
|
|
|
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) |
|
|
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 |
|
|
|
|
|
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) |
|
tomtomsonJoin Date: 2008-07-06 Post Count: 2701 |
[ Content Deleted ] |
|
adamangelJoin Date: 2008-10-23 Post Count: 35 |
~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 |
|
adamangelJoin Date: 2008-10-23 Post Count: 35 |
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 |
|
|
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 |
|