Global Functions
Below is a list of all global functions. By “global”, we mean these functions do not require a preceding namespace - so you can call them directly, unlike other functions.
print
Function
Prints text to game's console.
Arguments
Name
Type
Description
...
...
Values to print in the console.
Example
error
Function
Prints an error text to game's console, and shuts down the script. Try to avoid using this function - use it only if an error happens which you can't recover from.
Arguments
Name
Type
Description
text
string
Example
Last updated