Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- Doors Hack Script
- local player = game.Players.LocalPlayer
- local mouse = player:GetMouse()
- local DoorsGUI = Instance.new("ScreenGui")
- DoorsGUI.Parent = player.PlayerGui
- DoorsGUI.Name = "DoorsGUI"
- local SetSpeedTo50 = Instance.new("TextButton")
- SetSpeedTo50.Name = "SetSpeedTo50"
- SetSpeedTo50.Parent = DoorsGUI
- SetSpeedTo50.Text = " Set Speed to 50"
- local sptn = Instance.new("TextButton")
- sptn.Nane = "Set Speed to Normal"
- sptn.Position = Vector2.new(50,0)
- stpn.Parent = DoorsGUI
- function sst50()
- while wait() do
- player.Character:WaitForChild("Humanoid").WalkSpeed = 50
- end
- end
- function sstn()
- while wait() do
- player.Character: WaitForChild("Humanoid").WalkSpeed = 16
- -- if you in multiplayer and at the last back it will set
- -- speed to 16 is normal if you back and got giltch
- -- that is a problem.
- end
- end
- SetSpeedTo50.MouseButton1Click:Connect(sst50)
- stpn.MouseButton1Click:Connect(sstn)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement