Roblox_Exploits_YT

Untitled

Jul 3rd, 2020
480
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.48 KB | None | 0 0
  1. --[[Speed Script
  2. Q to slow down
  3. E to speed up
  4. Enjoy!]]
  5. local UIS = game:GetService("UserInputService")
  6.  
  7. UIS.InputBegan:Connect(function(input)
  8. if input.keyCode == Enum.KeyCode.E
  9. then
  10. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = game.Players.LocalPlayer.Character.Humanoid.WalkSpeed + 5
  11. elseif input.keyCode == Enum.KeyCode.Q
  12. then
  13. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = game.Players.LocalPlayer.Character.Humanoid.WalkSpeed - 5
  14. end
  15. end)
Advertisement
Add Comment
Please, Sign In to add comment