GettingUp (Event)

From Legacy Roblox Wiki
Revision as of 06:09, 27 April 2023 by Realjame (talk | contribs) (Text replacement - "<SyntaxHighlight code="lua">" to "<syntaxhighlight lang="lua">")
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)