rconsolehide Synchronous

  • consoledestroy
  • consolehide
  • rconsoledestroy

Hide the script console. Use rconsoleshow to display it again. Use it to dismiss the console after an interaction. It changes visibility; rconsoleclear is the operation for removing accumulated output.

Syntax
Luau
rconsolehide() -> ()

Parameters

This function takes no arguments.

Returns

()

This function returns no values.

Example

Example
Luau
rconsoleshow()
rconsoleprint("Press Enter to hide this console.")
rconsoleinput()
rconsolehide()
Kawaii documentation