Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- wait(1)
- local mouse = game.Players.LocalPlayer:GetMouse()
- mouse.KeyDown:connect(function(key)
- if key:byte() == 48 then
- script.Parent.Parent.Character.Humanoid.JumpPower = 150
- end
- mouse.KeyUp:connect(function(key)
- if key:byte() == 48 then
- script.Parent.Parent.Character.Humanoid.JumpPower = 50
- end
- end)
- end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement