PlayerRemoving (Event): Difference between revisions

From Legacy Roblox Wiki
Jump to navigationJump to search
>JulienDethurens
No edit summary
>JulienDethurens
No edit summary
(No difference)

Revision as of 08:30, 28 January 2012

PlayerRemoving ( Player player )
Description Fires when a player is leaving the game.
Member of: Players


Example

local function onPlayerLeaving(Player)

 print(Player.Name.." is leaving the game!")

end

game.Players.PlayerRemoving:connect(onPlayerLeaving)