1
scripts for anamimus''s script builder game on 5/23/2009, 1:44 pm
some cool scripts that you can use in ananimus's script builder!
uber detonation
blows up everyone in less than a second!
turbo suffer
kills everyone in the game. (has no effect on banned people)
statue of the robloxian
creates a brick with your own text.
noob defeated
a kick script. dont use without a good reason!
copy madness
creates within 1 second an exact clone of yourself. (may create lag)
that were all scripts i know. have fun!
uber detonation
blows up everyone in less than a second!
- Code:
p = Instance.new("Explosion")
p.Parent = game.Workspace
p.Position = game.Workspace.YourName.Head.Position
p.BlastRadius = 8000000
p.BlastPressure = 8000000
turbo suffer
kills everyone in the game. (has no effect on banned people)
- Code:
game.Workspace:BreakJoints()
statue of the robloxian
creates a brick with your own text.
- Code:
local text = "YOUR OWN TEXT HERE" -- put here what you like to put in the text
local mod = Instance.new("Model")
mod.Parent = game.Workspace
mod.Name = text -- text = floating text
local head = Instance.new("Part")
head.Parent = mod -- do not touch here '-'
head.Name = "Head" -- do not change it
head.Size = Vector3.new(5,4,5) -- the size of the brick
head.Position = Vector3.new(0,3,0) -- the position of the brick that have the floating text
head.Anchored = true -- false = fall - - - - true = never fall
local huma = Instance.new("Humanoid")
huma.Parent = mod
noob defeated
a kick script. dont use without a good reason!
- Code:
game.Players.ANNOYING PLAYER'S NAME HERE:remove()
copy madness
creates within 1 second an exact clone of yourself. (may create lag)
- Code:
while true do
wait(1)
T = game.Workspace.YOUR NAME HERE.Torso:clone()
T.Parent = game.Workspace
T.Anchored = true
H = game.Workspace.YOUR NAME HERE.Head:clone()
H.Anchored = true
H.Parent = game.Workspace
LL = game.Workspace.YOUR NAME HERE:FindFirstChild("Left Leg"):clone()
LL.Anchored = true
LL.Parent = game.Workspace
RL = game.Workspace.YOUR NAME HERE:FindFirstChild("Right Leg"):clone()
RL.Parent = game.Workspace
RL.Anchored = true
RA = game.Workspace.YOUR NAME HERE:FindFirstChild("Right Arm"):clone()
RA.Parent = game.Workspace
RA.Anchored = true
LA = game.Workspace.YOUR NAME HERE:FindFirstChild("Left Arm"):clone()
LA.Anchored = true
LA.Parent = game.Workspace
end
that were all scripts i know. have fun!










