Hey!
How do I stop a module script from being loaded in my game? One of my groups developers put an exploit in without me knowing and can’t find the script
Help is much appreciated.
Hey!
How do I stop a module script from being loaded in my game? One of my groups developers put an exploit in without me knowing and can’t find the script
Help is much appreciated.
The only way is to actually find the script that is requiring it or has the obfuscated code that looks fishy. You can’t cut corners when trying to fix anti exploit or malicious code.
You can use the Find In All Scripts menu to look for require
, or an obfuscated version of that.
You can also search for Script, ModuleScript or LocalScript in the explorer, that way you can see all scripts in your game.
On top of this, you should also search for getfenv()
, as it’s also used to load malicious code and isn’t found when searching for require()
.
I literally thought that wasn’t a thing, thank you so much!!
Thank you so much!!
I literally thought I would have to look through every script.
Found the actual script, used “Find all” and the ID it was requiring and quickly removed it. Thank you!!