CustomStatusAdded (Event)

From Legacy Roblox Wiki
Jump to navigationJump to search
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