while true do wait(1) function onEnter(player) wait(1) player:Remove() end game.Players.PlayerAdded:connect(onEnter) end
Try this...
game.Players.PlayerAdded:connect(function(player) wait(1) player:Kick() end)
Also, you don't need the while true do or the end after the game.Players part. Remove() has also been deprecated so you can't use it anymore.
Locked by TheMyrco
This question has been locked to preserve its current state and prevent spam and unwanted comments and answers.
Why was this question closed?