Returns a human-readable Luau bytecode disassembly for a LocalScript or ModuleScript.
Where decompile rebuilds readable Luau source, disassemble stays one level lower and lists the script’s compiled bytecode instructions as text. Reach for it when you want to see the exact opcodes, or when the decompiler can’t recover part of a script.
Seliware uses the Konstant v2.1 disassembler.
Parameters
Returns
string - the script’s bytecode disassembly, as readable text.
Example
Always check parameters and return values when working with this library function.