MADE BY 1x1x1x1C00lKid
NOTE:
- this game uses the new chat vulnerability, but if you disable your chat events youd on’t get banned, I made a new version that checks report abuses spams on client and if the messageposted correspond with the localplayer one.
GAME LINK:
CROSSWOODS
SCRIPT:
Y = hookmetamethod(game,"__namecall",function(self,...)
local args = {...};
local checkargs = {};
local method = getnamecallmethod()
local last
if method == "Fire" or method == "FireServer" then
if self.Name == "MessagePosted" or self.Name == "SayMessageRequest" then
last = args[1]
--print(args[1].. last)
if last == args[1] then
return Y(self,...)
else
return
end
if method == "ReportAbuse" and self == game.Players.LocalPlayer then
return
end
end
end
return Y(self,...)
end)