كذا ؟
[lua]WordsK = {"ياحمار",
"ابن كلب",
"كلب",
"حقير",
"حمار",
"ياورع"}
addEventHandler("onClientGUIChanged", getRootElement(),
function(msg, msgType)
for k,v in ipairs (Words) do
if string.find(msg,v) then
cancelEvent()
guiSetText(, "")
end
end
end
)