How can it do to be in a script is a list of name!
Section: Mute Player!
Pls help!
thanks in advance
function InitArray(m,val) array={} 	for i=1,m do 		array[i]=val 	end return array end if(ppl==nil) then ppl={} end if(ppl.muted) then ppl.muted={} end ppl.muted=InitArray(32,0) addhook("say","ppl.say") function ppl.say(id,txt) 	if(ppl.muted[id]==1) then 		msg2(id,"©255000000You are muted@C") 		return 1 	end end addhook("parse","ppl.muteparse") function ppl.muteparse(cmd) 	if(string.sub(cmd,1,4)=="mute") then 		local muteid=tonumber(string.sub(cmd,6,string.len(cmd))) 		ppl.muted[muteid]=1 		print("©255255255"..muteid.." is now muted!") 		msg2(muteid,"©255000000You got muted!@C") 		return 1 	end 	 	if(string.sub(cmd,1,6)=="unmute") then 		local muteid=tonumber(string.sub(cmd,8,string.len(cmd))) 		ppl.muted[muteid]=0 		print("©255255255"..muteid.." got unmuted!") 		msg2(muteid,"©000255000You got unmuted!@C") 		return 1 	end end