WrapInFunction

This Step Wraps the Entire Script into a Function

Settings

Nametypedescription

Iterations

number

The Number Of Iterations

Example

in.lua
print("Hello, World!")
out.lua
-- Iterations = 1
return (function()
    print("Hello, World!")
end)()

Last updated