Reflection Functions
Loadstring:
<function> loadstring(<string> chunk, <string?> chunkName)
- Loads
chunk
as a Lua function with optionalchunkName
and returns it.
Check Caller:
<bool> checkcaller(<void>)
- Returns
true
if the current thread was created by Oxygen-U.
Is Lua Closure:
<bool> islclosure(<function> a1)
- Returns
true
ifa1
is an LClosure.
Dump String:
<string> dumpstring(<string> script)
- Returns the Oxygen-U formatted bytecode for source string
script
.
Decompile:
<string> decompile(<Instance> script)
- Decompiles
script
and returns the decompiled output.