Advertisement
halfdan_dk

Roblox Inf Jump Script

Aug 3rd, 2020 (edited)
115
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.43 KB | None | 0 0
  1. local p = game.Players.LocalPlayer
  2. local m = p:GetMouse()
  3.  
  4. m.KeyDown:Connect(function(k)
  5.     local hum = p.Character:FindFirstChildOfClass("Humanoid")
  6.     if k == " " and (hum:GetState() == Enum.HumanoidStateType.Jumping or hum:GetState() == Enum.HumanoidStateType.Freefall) then
  7.         p.Character.HumanoidRootPart.Velocity = Vector3.new(p.Character.HumanoidRootPart.Velocity.X,50,p.Character.HumanoidRootPart.Velocity.Z)
  8.     end
  9. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement