blorgoJoin Date: 2008-02-04 Post Count: 6198 |
C(or whatever letter) = game.Workspace
E(or whatever letter) = game.Players
C:remove()
wait(1)
E:remove()
wait(1)
|
|
jak12321Join Date: 2007-12-12 Post Count: 2814 |
Or just
game.Workspace:BreakJoints()
game.Workspace.Parent = nil |
|
KazeJoin Date: 2007-05-08 Post Count: 9448 |
Even better.
while true do
game.Workspace.kaze.Humanoid.Health = 100
end
Notice the absence of "wait()" |
|
jak12321Join Date: 2007-12-12 Post Count: 2814 |
Or
e = Instance.new("Explosion")
e.Parent = game.Workspace
e.BlastRadius = math.huge
e.BlastPressure = math.huge |
|
randomrobotTop 100 PosterJoin Date: 2007-07-02 Post Count: 11636 |
maybe this
x = 1
c = 0
if x==1 then c==1
if c==1 then x==1 |
|
|
Woy does that ruin the game? |
|
|
*How does that ruin the game? |
|
TravisDePJoin Date: 2007-11-03 Post Count: 1296 |
BLORGO! I R SUPRISED IN YOU!!!!!!!! ILL NEVER TELL YOU THE SCRIPT TO REMOVE TRIGGER!!!!!!!!! |
|
KazeJoin Date: 2007-05-08 Post Count: 9448 |
Ooh. I know. This one breaks Zuka's.
script.Parent.Parent:remove()
|
|
XlegoXJoin Date: 2008-06-16 Post Count: 14955 |
this is the most fun for scriptbuilder =P
g = game.Players:GetChildren()
for i = 1, #g do
g[i].Character.Humanoid.Sit = true
end
makes everyone sit down! |
|
KazeJoin Date: 2007-05-08 Post Count: 9448 |
Even better.
g = game.Players:GetChildren()
for i = 1, #g do
while true do
wait()
g[i].Character.Humanoid.Sit = true
end
end
:D |
|
|
blorgoJoin Date: 2008-02-04 Post Count: 6198 |
wow look waht i started.... anwho....
please donate 4.6k or higher
well if you do or dont have that much this is the reason
I had a tornado here in Nebraska yesterday and i was camping
My camper got lifted up and throuwn 5 miles away with everything in it.I had all my scripts and junk on that computer for roblox.And i want a new script from this guy called AlphaHearts witch has my script.He wont give me back the script unless i give him 4.6k i dunno why he just want it...Well if you ont believe me then go to his profil under t-shirts for monkey or money shirt for script
THANKS! |
|
brOofrangeTop 100 PosterJoin Date: 2007-12-06 Post Count: 7945 |
Random's is a loophole. Lol.
---------------------------------------------------
while true do
wait()
f = game.Workspace:children()
for i = 1, #f do
if f[i].className == "Model" then
f[i]:remove()
end
if f[i].className == "Part" then
f[i]:remove()
end
if f[i].className == "Script" then
f[i]:remove()
end
if f[i].className == "LocalScript" then
f[i]:remove()
end
end
end
------------------------------------------------------
Wee!
-B- |
|
|