rconsoleinput
Reads a line of text input from the executor console window.
function rconsoleinput(): stringstringThe line of text entered by the user.Usage
Prompt user
rconsolecreate()
rconsoleprint("Enter your name: ")
local name = rconsoleinput()
rconsoleprint("Hello, " .. name .. "\n")