detectobfuscation
Identify the obfuscator a script or bytecode input uses without executing it. Returns the obfuscator name, or none.
Syntax
detectobfuscation(source: string): stringParameters
sourceThe script source or bytecode to inspect.
Returns
The obfuscator name, or none.
Example
Name the obfuscator protecting a script.
local kind = detectobfuscation(sourceText)
print(kind)