(Official) LUA Scripting Documentation
input
Display an input field and wait for user input.
Spec:
input(
string header)
Parameters
header
: A descriptive header for the input field
Returns
string
: The user input as text
Example
local text = input("Enter your name")
notify("Your name is: ",text)
Incomplete
This documentation is incomplete