Compiler library
output1, output2, ... = compiler.InsertBlock(BlockName, ...)compiler.InsertBlock("Print", "Hello world!")compiler.InsertBlockAndFunction(BlockName, Function, ...)compiler.InsertBlockAndFunction(
"SetVariable1",
function(newValue) print(newValue) end,
"Hello from InsertBlockAndFunction!"
)Last updated