MADE BY log4j
FEATURE:
- ANTI CHAT
- .
- ADDABLE WORD TO THE
“local strings = {“gay”,”bozo”}”
UNIVERSAL GAMES
SCRIPT:
local old
local strings = {"gay","bozo"}
local exactstrings = {"L"}
old = hookmetamethod(game,"__namecall",newcclosure(function(self,...)
local args = {...}
local method = getnamecallmethod()
if method == "FireServer" and tostring(self) == "SayMessageRequest" then
if table.find(exactstrings,args[1])then
return game:GetService('StarterGui'):SetCore("ChatMakeSystemMessage", { Text = '[AntiChat] Stopped you from sending: "'..args[1]..'"', Color = Color3.fromHSV(tick()%5/5,1,1)} )
end
for i,v in next, strings do
if (args[1]):lower():find((v):lower()) then
return game:GetService('StarterGui'):SetCore("ChatMakeSystemMessage", { Text = '[AntiChat] Stopped you from sending: "'..args[1]..'"', Color = Color3.fromHSV(tick()%5/5,1,1)} )
end
end
end
return old(self,...)
end))