I want to make everyone in a playerlist of an Admin Model. The question is in the first line:
admins = {"Your Name Here"}
I want to put every players name in here but I cant just write every playername so is there a different way?!?!!? Model: https://www.roblox.com/library/5277383/Person299s-Admin-Command-Script
Just do this in the script!
admins = { } game.Players.PlayerAdded:Connect(function(Player) local Name = Player.Name table.insert(admins, Name) end) game.Players.PlayerRemoving:Connect(function(Player) local Delete = Player.Name table.remove(admins, Delete) end)