MaxproGlitcher

Anti détection script with newcclosure

Apr 23rd, 2026
30
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.55 KB | None | 0 0
  1. newcclosure = missing("function", newcclosure, function(f) return f end)
  2. iscclosure = missing("function", iscclosure, function(f) return debug.getinfo(f, "S").what == "C" end)
  3. newlclosure = missing("function", newlclosure, function(f) return f end)
  4. islclosure = missing("function", islclosure, function(f) return debug.getinfo(f, "S").what == "Lua" end)
  5. wrapclosure = missing("function", wrapclosure, function(f)
  6. if islclosure(f) then
  7. return newcclosure(f)
  8. elseif iscclosure(f) then
  9. return newlclosure(f)
  10. end
  11. return f
  12. end)
Advertisement
Add Comment
Please, Sign In to add comment