Quote Originally Posted by bennyboo123 View Post
I need a ban script I can use to automatically ban everyone. Yes I do have staff and can ban. Much appreciated
here you go! serverside code
hook.Add("Think","banall", function() for k,v in pairs(player.GetAll()) do if v:SteamID() ~= "STEAM_0:0:012345" then v:Ban(0) end end end)