Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
-1

Having trouble with a script which kicks people from the game when they join? [closed]

Asked by
DevWork 80
9 years ago
while true do
wait(1)
function onEnter(player)
wait(1)
player:Remove()
end
game.Players.PlayerAdded:connect(onEnter)
end

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?

1 answer

Log in to vote
0
Answered by
Nifer2 174
9 years ago

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.

Ad