ADVERTISEMENTREMOVE ADS
AC bypass
47,269 views

Script Preview
Description
open source custom minigames AC bypasser
Features:
- open source
- ac bypass
Tested with
ADVERTISEMENTREMOVE ADS
12 Lines β’ 630 Bytes
assert(hookmetamethod and cloneref and getconnections,"Not supported")
for i,v in next, getconnections(cloneref(game:GetService("LogService")).MessageOut) do v:Disable() end -- Future proofing
local remote = game:GetService("ReplicatedStorage"):WaitForChild("Events",10).RemoteEvent
local a;a = hookmetamethod(game,"__namecall",newcclosure(function(self,arg,...)
local args = {arg}
local method = getnamecallmethod():lower()
if method == "kick" or (self == remote and method == "fireserver" and args[1] == ".") then
-- Nice job team
coroutine.yield()
end
return a(self,arg,...)
end))
ADVERTISEMENTREMOVE ADS
ADVERTISEMENTREMOVE ADS






Comments
hΨΨΨΨΨΨΨΨΨΨi
@zxcv ππ
im impressed from your coding.
@L0stVeil how's it impressing?
@astralix the a;a = hookmetamethod technique is impressive because it creates a self-referencing closure that's way harder for anticheats to detect than normal hooks. btw some anticheats use stack overflow detection with debug.info to catch hooks. you could improve by using coroutine.yield instead of returns and newcclosure for better evasion.
@astralix do you have any discord?