Answered by
5 years ago Edited 5 years ago
https://developer.roblox.com/en-us/api-reference/class/Humanoid
There is a humanoid event that is called Jumping which fires when the Jumping state enables and disables, there is also a bool from the event which indicates if the player is jumping or not.
The script below only works for localscripts, it might work for serverscripts if you fix the local Player
value.
01 | local Player = game.Players.LocalPlayer |
03 | Player.CharacterAdded:Wait() |
05 | local Character = Player.Character |
07 | local Humanoid = Character:WaitForChild( "Humanoid" ) |
09 | Humanoid.Jumping:Connect( function (bool) |
11 | print (Player.Name .. " is now jumping." ) |
13 | print (Player.Name .. " is no longer jumping." ) |
I have been unable to test this script so please let me know if I did something wrong so I can correct it
Thanks to Glacitron for line 2