CharacterRemoving (Event): Difference between revisions

From Legacy Roblox Wiki
Jump to navigationJump to search
>GoldenUrg
initial from object browser
>Merlin11188
No edit summary
 
(27 intermediate revisions by 6 users not shown)
Line 1: Line 1:
<onlyinclude>
{|style="width:100%;"
{{Event|
|<onlyinclude>{{Event|name = CharacterRemoving
name = CharacterRemoving
|arguments = [[Model]] ''character''
|arguments = [[Instance]] ''character''
|description = Fired when a character is about to be removed.
|description = Fired when a character is about to be removed.
|object = [[RBX.lua.Player (Object)|Player]]
|object = Player
|}}
|}}</onlyinclude>
</onlyinclude>
|}
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)
  player.CharacterRemoving:connect(function(character)
    print(character.Name .. " has died.")
  end)
end)
</pre>}}
 
[[Category:Events]]

Latest revision as of 23:12, 18 July 2011

CharacterRemoving ( Model character )
Description Fired when a character is about to be removed.
Member of: Player

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)