So I have a script that is supposed to ban certain players upon joining. I used my alt as one of the people banned, and the script did nothing when I had my alt join the game.
I also tried to test the script in Test Mode, and output gave me nothing.
I have no idea why this script is not working. Can someone please help me?
Here's the script:
BannedPlayers = {"Player1", "Player3"} game.Players.PlayerAdded:connect(function(Player) repeat wait(1) until Player.Character for k,v in pairs(BannedPlayers) do if Player.Name == v then Player:Destory() end end end)
You misspelled Destroy.
BannedPlayers = {"Player1", "Player3"} game.Players.PlayerAdded:connect(function(Player) repeat wait(1) until Player.Character for i,v in pairs(BannedPlayers) do if Player.Name == v then Player:Destroy() end end end)