rconsolehide Synchronous

  • consoledestroy
  • consolehide
  • rconsoledestroy

Hide the script console while keeping its accumulated output. Show it again later to return to the same log.

Syntax
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

Example
Luau
rconsoleshow()
rconsoleprint("You can reopen this log later.")
rconsolehide()
Kawaii documentation