I am making a racing game and I have a table, full of players currently in the race. If one of those players leaves the game will they automatically be removed from said table?
You could do this:
game.Players.PlayerRemoving:connect(function(oldplr) table.remove(TABLENAME, oldplr) end)
And I don't think they are automatically removed