Advertisement
JW2

Roblox Doors Basic Hacks

JW2
Dec 25th, 2022 (edited)
318
1
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.91 KB | Source Code | 1 0
  1. -- Doors Hack Script
  2.  
  3. local player = game.Players.LocalPlayer
  4. local mouse = player:GetMouse()
  5. local DoorsGUI = Instance.new("ScreenGui")
  6. DoorsGUI.Parent = player.PlayerGui
  7. DoorsGUI.Name = "DoorsGUI"
  8. local SetSpeedTo50 = Instance.new("TextButton")
  9. SetSpeedTo50.Name = "SetSpeedTo50"
  10. SetSpeedTo50.Parent = DoorsGUI
  11. SetSpeedTo50.Text = " Set Speed to 50"
  12. local sptn = Instance.new("TextButton")
  13. sptn.Nane = "Set Speed to Normal"
  14. sptn.Position = Vector2.new(50,0)
  15. stpn.Parent = DoorsGUI
  16.  
  17. function sst50()
  18. while wait() do
  19. player.Character:WaitForChild("Humanoid").WalkSpeed = 50
  20. end
  21. end
  22.  
  23. function sstn()
  24. while wait() do
  25. player.Character: WaitForChild("Humanoid").WalkSpeed = 16
  26. -- if you in multiplayer and at the last back it will set
  27. -- speed to 16 is normal if you back and got giltch
  28. -- that is a problem.
  29. end
  30. end
  31.  
  32. SetSpeedTo50.MouseButton1Click:Connect(sst50)
  33. stpn.MouseButton1Click:Connect(sstn)
Tags: Roblox Hacks
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement