GettingUp (Event)

From Legacy Roblox Wiki
Revision as of 06:17, 27 April 2023 by Realjame (talk | contribs) (Text replacement - "</SyntaxHighlight>" to "</syntaxhighlight>")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
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)