CustomStatusAdded (Event)
From Legacy Roblox Wiki
CustomStatusAdded ( String status ) | |
Description | Fired when a status is added to the Humanoid via the AddCustomStatus Method. |
---|---|
Member of: | Humanoid |
Example
function onCustomStatusAdded( status ) print("The humanoid is now " .. status .. "ing") end humanoid = game.Players.LocalPlayer.Character.Humanoid humanoid.CustomStatusAdded:connect( onCustomStatusAdded ) humanoid:AddCustomStatus( "Sleep" ) --> The humanoid is now sleeping