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       = CharacterRemoving
|<onlyinclude>{{Event|name = CharacterRemoving
|arguments   = [[Instance]] ''character''
|arguments = [[Model]] ''character''
|description = Fired when a character is about to be removed.
|description = Fired when a character is about to be removed.
|object     = [[Player]]
|object = Player
}}</onlyinclude>
|}}</onlyinclude>
{{clear floats}}{{Example|
|}
<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

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)