MADE BY tbitw2549
FEATURE:
- PROTECT YOURSELF FROM THE https://keionhub.xyz/autoban-game-fixed/4705/
- .
- PUT THIS SCRIPT INTO YOUR AUTOEXE FOULDER
MELICIOUS GAMES
SCRIPT:
local old;
old=hookmetamethod(game,"__namecall",newcclosure(function(self,...)
local method=getnamecallmethod()
if method=="FireServer" and tostring(self)=="SayMessageRequest"and tostring(getcallingscript())~="ChatMain" and not checkcaller() then
warn("Game tried to chat for the player through the SayMessageRequest remote event. Attempt denied.")
return
elseif method=="CaptureFocus" and tostring(self)=="ChatBar" and not checkcaller() then
warn("Game tried to send a legit message through the chat as the local player via capturing the chat focus. Attempt denied")
return
elseif method=="ReportAbuse" and self==game.GetService(game,"Players") and not checkcaller() then
warn("Game tried to report the player. Attempt denied")
return
elseif method=="Fire" and tostring(self)=="MessagePosted" and tostring(getcallingscript())~="ChatScript" and not checkcaller() then
warn("Game tried using the MessagePosted bindable event. Attempt denied.")
return
end
return old(self,...)
end))