CharacterRemoving (Event): Difference between revisions
From Legacy Roblox Wiki
Jump to navigationJump to search
>NXTBoy stupid tables... |
>Merlin11188 No edit summary |
||
(9 intermediate revisions by 4 users not shown) | |||
Line 1: | Line 1: | ||
<onlyinclude>{{Event | {|style="width:100%;" | ||
|name | |<onlyinclude>{{Event|name = CharacterRemoving | ||
|arguments | |arguments = [[Model]] ''character'' | ||
|description = Fired when a character is about to be removed. | |description = Fired when a character is about to be removed. | ||
|object | |object = Player | ||
}}</onlyinclude> | |}}</onlyinclude> | ||
|} | |||
<pre> | This event fires when the player's character is removed, which happens right after they die. | ||
{{Example|<pre> | |||
--note, these functions are anonymous | |||
game.Players.PlayerAdded:connect(function(player) | game.Players.PlayerAdded:connect(function(player) | ||
player.CharacterRemoving:connect(function(character) | player.CharacterRemoving:connect(function(character) | ||
Line 12: | Line 14: | ||
end) | end) | ||
end) | end) | ||
</pre> | </pre>}} | ||
}} | |||
[[Category:Events]] |
Latest revision as of 23:12, 18 July 2011
|
This event fires when the player's character is removed, which happens right after they die.
Example
--note, these functions are anonymous game.Players.PlayerAdded:connect(function(player) player.CharacterRemoving:connect(function(character) print(character.Name .. " has died.") end) end)