InfMods

easy slow mo roblox walkspeed script

Sep 23rd, 2022
1,461
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. create a local script
  2.  
  3.  
  4. step 2 copy the script:
  5.  
  6.  
  7. repeat wait() until game.Players.LocalPlayer
  8. local Mouse = game.Players.LocalPlayer:GetMouse()
  9. local Plr = game.Players.LocalPlayer
  10.  
  11. Mouse.KeyDown:connect(function(KeyDown)
  12. if KeyDown == "0" then
  13. Plr.Character.Humanoid.WalkSpeed = 6
  14. end
  15. end)
  16.  
  17. Mouse.KeyUp:connect(function(KeyUp)
  18. if KeyUp == "0" then
  19. Plr.Character.Humanoid.WalkSpeed = 6
  20. end
  21. end)
Advertisement
Add Comment
Please, Sign In to add comment