rconsolehide
Hides the console window without destroying it.
Syntax
rconsolehide() -> ()Aliases
rconsoledestroyconsoledestroy
Returns
This function does not return a value.
Description
rconsolehide hides the existing console window. Its contents remain available when the console is shown again.
Example
-- Show console and print something
rconsoleshow()
rconsoleprint("This console will close in 5 seconds...\n")
-- Wait and then hide
task.wait(5)
rconsolehide()Notes
- Use
rconsoleshoworrconsoletoggleto reveal it again
Related Functions
rconsoleshow- Show the consolerconsoletoggle- Toggle console visibility