I need a script
That allows the administrator to:
Kick
Ban
Restart round
Change Map
I cannot find anything that is simple and doesnt have loads of commands or adds color
Just limited to those 4 maybe 5-6 more
But not like tlex and stuff
addhook("say","commands") function commands(id,txt) local p = totable(txt) local cmd = tostring(p[1]) local pl = tonumber(p[2]) for _, k in ipairs(admins) do if player(id,"usgn") == k then 		if cmd == "@kick" then 	 parse("kick "..pl) 			return 1 	 elseif cmd == "@ban" then 				parse("banip "..pl) 				return 1 			 elseif cmd == "@changemap" then 				 txt = string.sub(txt,11) 				 parse("map "..txt) 				 return 1 		 elseif cmd =="@restart" then 			 parse("restart") 			 return 1 end end end end