Advertisement
Guest User

Roblox Shift to super jump

a guest
Nov 3rd, 2017
2,991
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. wait(1)
  2.  
  3. local mouse = game.Players.LocalPlayer:GetMouse()
  4.  
  5. mouse.KeyDown:connect(function(key)
  6. if key:byte() == 48 then
  7. script.Parent.Parent.Character.Humanoid.JumpPower = 150
  8. end
  9. mouse.KeyUp:connect(function(key)
  10. if key:byte() == 48 then
  11. script.Parent.Parent.Character.Humanoid.JumpPower = 50
  12. end
  13. end)
  14. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement