Advertisement
YourMain12

Byfron Bypass

May 4th, 2023
216
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.32 KB | None | 0 0
  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)
  10.  
Tags: Bypass byfron
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement