I've also tried removing the player data from those new players but didn't work:
CMD i've used to remove player-data:
===============================================================
/c
local player = game.players["NameGoesHere"]
if not player then return end
local toRemovePlayers = {}
table.insert(toRemovePlayers, player)
game.remove_offline_players(toRemovePlayers)
===============================================================