rconsolehide Synchronous
consoledestroyconsolehiderconsoledestroy
Hide the script console while keeping its accumulated output. Show it again later to return to the same log.
Luau
rconsolehide() -> ()Parameters
This function takes no arguments.
Returns
()No values.
Usage notes
Hiding does not clear the log. A subsequent rconsoleinput returns an empty string while the console is hidden.
Example
Luau
rconsoleshow()
rconsoleprint("You can reopen this log later.")
rconsolehide()