Advertisement
TAMATI9875

DaHoodWalkSpeed

Jun 12th, 2022
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.67 KB | None | 0 0
  1. --Settings
  2. local sped = 110 -- Speed
  3. local keybind = "q"
  4.  
  5.  
  6.  
  7.  
  8. --The Script
  9.  
  10. yes = false
  11. plr = game.Players.LocalPlayer
  12. mouse = plr:GetMouse()
  13. mouse.KeyDown:connect(function(key)
  14. if key == keybind and yes == false then
  15. yes = true
  16. game.Players.LocalPlayer.Character.Humanoid.Name = "Humz"
  17. game.Players.LocalPlayer.Character.Humz.WalkSpeed = sped
  18. game.Players.LocalPlayer.Character.Humz.JumpPower = 50
  19. elseif key == keybind and yes == true then
  20. yes = false
  21. game.Players.LocalPlayer.Character.Humz.WalkSpeed = 16
  22. game.Players.LocalPlayer.Character.Humz.JumpPower = 50
  23. game.Players.LocalPlayer.Character.Humz.Name = "Humanoid"
  24. end
  25. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement