1 local OldNamecall = hookmetamethod(game, "__namecall") 2 hookmetamethod(game, "__namecall", function(self, ...) 3 local args = {...} 4 local method = getnamecallmethod() 5 if method == "Kick" and tostring(args[1]) == "Anticheat bypass detected." then 6 return nil 7 end 8 return OldNamecall(self, ...) 9 end)