🔥New Hook Detector🔥
This hook can detect almost all functions, you just need to put this code in the first line of the script
local hookFunction = {}
for k,v in pairs(_G) do
if type(v) == "table" then
for kk,vv in pairs(v) do
if type(vv) == "function" and debug.getinfo(vv).source ~= "=[Java]" then
table.insert(hookFunction,k.."."..kk)
end
end
end
end
if #hookFunction > 0 then
while(true) do
gg.alert("🔥HOOK DETECTED IN: "..table.concat(hookFunction,","))
os.exit()
end
end
This hook can detect almost all functions, you just need to put this code in the first line of the script
local hookFunction = {}
for k,v in pairs(_G) do
if type(v) == "table" then
for kk,vv in pairs(v) do
if type(vv) == "function" and debug.getinfo(vv).source ~= "=[Java]" then
table.insert(hookFunction,k.."."..kk)
end
end
end
end
if #hookFunction > 0 then
while(true) do
gg.alert("🔥HOOK DETECTED IN: "..table.concat(hookFunction,","))
os.exit()
end
end