PlayerRemoving (Event): Difference between revisions

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

Revision as of 02:00, 20 January 2012

PlayerRemoving ( Player player )
Description Fires before a player is disconnected from a game.
Member of: Players


Example
local function onPlayerLeaving(Player)
  print(Player.Name.." is leaving the game!")
end

game.Players.PlayerRemoving:connect(onPlayerLeaving)