getgenv
Returns a table containing all executor functions, serving as the shared environment for all scripts executed by the executor.
function getgenv(): { any }
Example
getgenv().test = "hello world"
print(test) -- Output: hello world
Last updated