PlayerRemoving (Event): Difference between revisions
From Legacy Roblox Wiki
Jump to navigationJump to search
>BlueTaslem No edit summary |
Better code |
||
(19 intermediate revisions by 6 users not shown) | |||
Line 1: | Line 1: | ||
{{ | <onlyinclude>{{Event|name = PlayerRemoving | ||
| arguments = [[Player]] <var>player</var> | |||
| description = Fires when a player is leaving the game. | |||
| 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") | |||
local function onPlayerRemoving(player) | |||
print("A player has left: " .. player.Name) | |||
print( | |||
end | end | ||
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)