PlayerRemoving (Event): Difference between revisions

From Legacy Roblox Wiki
Jump to navigationJump to search
>Anaminus
m PlayerRemoving moved to PlayerRemoving (Event)
Better code
 
(22 intermediate revisions by 7 users not shown)
Line 1: Line 1:
{{Event|name=PlayerRemoving
<onlyinclude>{{Event|name = PlayerRemoving
|arguments=[[Instance]] ''Player''
  | arguments   = [[Player]] <var>player</var>
|description= Fired after a player leaves the game.
  | description = Fires when a player is leaving the game.
|object= [[RBX.Lua.Players (Service)|Players]]
  | object     = Players
|}}
}}</onlyinclude>
{{Clear floats}}
{{Example|
This code will print <samp>A player has left: </samp>, followed by the player's name, everytime a player leaves:
<syntaxhighlight lang="lua" line>
local Players = game:GetService("Players")


Example:
local function onPlayerRemoving(player)
 
print("A player has left: " .. player.Name)
<pre>function onPlayerLeaving(Player)
print(Player.Name .. " has left the game!")
end
end


game.Players.PlayerRemoving:connect(onPlayerLeaving)</pre>
Players.PlayerRemoving:connect(onPlayerAdded)
</syntaxhighlight>}}
== See Also ==
* [[File:Event Icon.png]][[PlayerAdded_(Event)|PlayerAdded]]
[[Category:Events]]

Latest revision as of 01:44, 18 April 2023

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

This code will print A player has left: , followed by the player's name, everytime a player leaves:

local Players = game:GetService("Players")

local function onPlayerRemoving(player)
	print("A player has left: " .. player.Name)
end

Players.PlayerRemoving:connect(onPlayerAdded)

See Also