Players dont go back into the game.Players

^^

Just for some Roblox history @pumpkyrofl, it was possible to utilize this on players until 20th of April this year.

Before the update that disconnects players from the data model, it was possible for devs of famous games to hide in nil and observe/investigate/… Sneaky lol.

Players don’t get disconnected (right away?) if you don’t disconnect manually. I’ve done a lot of tests, and came to the conclusion that it’s great to have the following clear the player.

Players.PlayerRemoving:Connect(function(player)
	-- clear character
	-- save data
	task.wait(10) --> some reasonable time
	player:Destroy()
end)
1 Like

The solution became (post deleted by author) so why not solve the topic?

I do believe putting the Player instance to nil would kick the player, so that’s a bad idea :confused:

I did that by accident I have been rate limited for 6 hours after that I will undelete it if I can but the solution was that you can’t parent it nil without kicking

1 Like

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.