Died (Event): Difference between revisions
From Legacy Roblox Wiki
Jump to navigationJump to search
>Camoy No edit summary |
>Camoy No edit summary |
(No difference)
|
Revision as of 15:42, 29 January 2011
Description
Died event is triggered when Humanoid "dies" either because Health is 0 or because the Head and Torso are disconnected (Broken joints or one or both is removed).
The event occurs after the automatic BreakJoints in model upon death, but before character falls and is removed.
Example
local function onDied(character) --do on death end local function onCharacterAdded(character) character.Humanoid.Died:connect(function() onDied(character) end) end local function onPlayerAdded(player) player.CharacterAdded:connect(onCharacterAdded) end game.Players.PlayerAdded:connect(onPlayerAdded)