Why is this ban script not working?
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:
01 | BannedPlayers = { "Player1" , "Player3" } |
03 | game.Players.PlayerAdded:connect( function (Player) |
04 | repeat wait( 1 ) until Player.Character |
05 | for k,v in pairs (BannedPlayers) do |
06 | if Player.Name = = v then |