Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- by Theamazingnater
- plr = game.Players.LocalPlayer
- char = workspace:WaitForChild(plr.Name)
- mouse = plr:GetMouse()
- naeeym = Instance.new("BillboardGui",char)
- naeeym.Size = UDim2.new(0,100,0,40)
- naeeym.StudsOffset = Vector3.new(0,5,0)
- naeeym.Adornee = char.Head
- tecks = Instance.new("TextLabel",naeeym)
- tecks.BackgroundTransparency = 1
- tecks.BorderSizePixel = 0
- tecks.Text = plr.Name
- tecks.Font = "ArialBold"
- tecks.FontSize = "Size24"
- tecks.TextStrokeTransparency = 0
- tecks.TextStrokeColor3 = Color3.new(0,0,0)
- tecks.TextColor3 = Color3.new(255,255,255)
- tecks.Size = UDim2.new(1,0,0.5,0)
- mouse.KeyDown:connect(function(key)
- if key == "t" then
- tecks.Text = "ZA WARUDO!!!!"
- local zawarudo = Instance.new("Sound",char.Torso)
- zawarudo.SoundId = "rbxassetid://1055792303"
- zawarudo.Volume = "5.000"
- zawarudo:Play()
- zawarudo.Name = "ZAWARUDO"
- wait(2)
- zawarudo.Parent = nil
- local soundeffect = Instance.new("Sound",char.Torso)
- soundeffect.SoundId = "rbxassetid://1235094803"
- soundeffect.Volume = "5"
- soundeffect:Play()
- soundeffect.Name = "ZaWarudoSoundEffect"
- for i,v in pairs (game.Players:GetChildren()) do
- local p = workspace:WaitForChild(v.Name)
- local t = p:FindFirstChild("Torso")
- if t then
- t.Anchored = true
- char:FindFirstChild("Torso").Anchored = false
- end
- end
- tecks.Text = plr.Name
- end
- end)
- mouse.KeyDown:connect(function(keydown)
- if keydown == "e" then
- tecks.Text = "Time has continued..."
- local timehascontinued = Instance.new("Sound",char.Torso)
- timehascontinued.SoundId = "rbxassetid://290810519"
- timehascontinued.Volume = "5"
- timehascontinued:Play()
- for i,v in pairs(game.Players:GetChildren()) do
- local p = workspace:WaitForChild(v.Name)
- local t = p:FindFirstChild("Torso")
- if t then
- t.Anchored = false
- end
- end
- wait(2)
- tecks.Text = plr.Name
- timehascontinued:Destroy()
- end
- end)
- mouse.KeyDown:connect(function(keycode)
- if keycode == "v" then
- tecks.Text = "THE WORLD SLOW DOWN TIME!"
- wait(1)
- workspace.Gravity = "50"
- tecks.Text = plr.Name
- for i,v in pairs(game.Players:GetChildren()) do
- local c = workspace:WaitForChild(v.Name)
- local h = c.Humanoid
- if h then
- h.WalkSpeed = "4"
- end
- end
- end
- end)
- mouse.KeyDown:connect(function(key2)
- if key2 == "r" then
- tecks.Text = "Time has returned to normal speed."
- local timehasreturned = Instance.new("Sound",char.Torso)
- timehasreturned.SoundId = "rbxassetid://290810519"
- timehasreturned.Volume = 5
- timehasreturned:Play()
- workspace.Gravity = "190"
- for i,v in pairs(game.Players:GetChildren()) do
- local c = workspace:WaitForChild(v.Name)
- local h = c.Humanoid
- if h then
- h.WalkSpeed = "16"
- end
- wait(2)
- timehasreturned:Destroy()
- tecks.Text = plr.Name
- end
- end
- end)
Advertisement
Add Comment
Please, Sign In to add comment