GettingUp (Event)

From Legacy Roblox Wiki
(Redirected from GettingUp)
Jump to navigationJump to search
GettingUp ( )
Description Fired after the Humanoid gets up from falling over.
Member of: Humanoid


Example

This code will print Getting up. everytime the player gets up:

Workspace.Player.Humanoid.GettingUp:connect(function()
  print("Getting up.")
end)