Advertisement
Fe2_Scripts

Fe2 Inf jump

Jul 18th, 2022
210
0
Never
1
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. getgenv().infjump = true
  2.  
  3. local Player = game:GetService("Players").LocalPlayer
  4. local Mouse = Player:GetMouse()
  5. Mouse.KeyDown:connect(function(k)
  6. if k:byte() == 32 and infjump == true then
  7. Humanoid = Player.Character:FindFirstChildOfClass("Humanoid")
  8. Humanoid:ChangeState(Enum.HumanoidStateType.Jumping)
  9. end
  10. end)
Advertisement
Comments
Add Comment
Please, Sign In to add comment
Advertisement