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