1
2
3
4
5
6
7
8
9
10
11
Admins = {00000} <------- put your id here.
addhook("say","adm_say")
function adm_say(id,txt)
	for _, usgn in ipairs(Admins) do
		if player(id,"usgn") == usgn then
			msg("©255255255"..player(id,"name").."(Admin) "..txt)
			return 1 <------ this need to add at script
		end
	end
end