Debug
Info about debugging stuff your self using GcViewerV2 by @awakenkn
want to learn how to use gcview to debug anti cheats?
Finding Anti cheat:
See for any script which might have weird name, set to nil or pink colored or has nil name or is pink or purple colored.
Once you have spotted anti cheat go and press on it to see its functions.
After functions are loaded in, view them one by one and find which is the main detection function by looking at constants or upvalues, its might be trouble some if you are using luraph. Once you have found the right function or functions grab them one by one and just use hookfunction
and hook them either return task.wait(9e9) or just disable them or you can spy on it to but i doubt you can spy on ac functions since they will trigger hook detections.
If Grab function fails:
In rare case if grab function fails or errors or doesnt work but you wana grab that function? no worries simple. Look at function info labels then filter it manually via filtergc
or getgc()
. All you need is constants and upvalues or even env table to match info's about function then you can even manually find it!
Last updated