I’ve always done
Players.PlayerRemoving:Connect(function(playerLeaving)
if playerLeaving.UserId == ourPlayer then -- Our player is defined before this
--// Reset of my code here
end
end)
Is there a way like player.PlayerRemoving?
I’ve always done
Players.PlayerRemoving:Connect(function(playerLeaving)
if playerLeaving.UserId == ourPlayer then -- Our player is defined before this
--// Reset of my code here
end
end)
Is there a way like player.PlayerRemoving?
Wym thats the way to do it???
What exactly are you asking?
I guess you can check if an instance inside game.Players
is removed as it’s probably a player, so you can just use game.Players.ChildRemoved:Connect(function(player) end)
.
No. Hacky + non-idiomatic, use the method roblox provides you.
That’s literally the same as PlayerRemoving
Sorry im bumping up this thread that was 11 months ago, but I think what he means is that if he had a player value, like:
local LocalPlayer = game.Players.LocalPlayer
LocalPlayer.Removed:Connect(function()
print(“Is there something like this that worked?”)
end)
maybe the problem was that if the player leaving is the last player the server would shutdown and prevent his code from running
if that was the case then you would do this
local ourPlayer = 873294834
local stopServerFromClosing = false
Players.PlayerRemoving:Connect(function(playerLeaving)
if playerLeaving.UserId ~= ourPlayer then return end
stopServerFromClosing = true
--// Reset of my code here
stopServerFromClosing = false
end)
game:BindToClose(function()
while stopServerFromClosing == true do
task.wait()
end
end)
I just wrote something simple
local plrs = game:GetService("Players")
local UserId = 107637223
plrs.PlayerRemoving:Connect(function(plr)
if plr.UserId == UserId then
print(1)
else
print(2)
end
end)
My apologies again, like I said, I did not mean to bump this thread, and I rather just wanted to give my support. People will be here because this is a place that helps others. Either way, you should expect people to visit because many people have similar problems that they would like to be answered. And they don’t want to make a new discussion because Roblox sends them similar forums like this.
This is my solution by the way:
player:GetPropertyChangedSignal("Parent"):Once(function()
print("Destroying")
end)
Quoting @700000002: “The Player is not destroyed and is instead parented outside the DataModel when leaving the game thus preserving the connection indefinitely leading to a memory leak if :Once is not instead employed”
This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.