rconsoleclear Synchronous

  • cleardevconsole
  • consoleclear

Empty the script console's accumulated lines before starting a fresh session. It leaves the console visibility unchanged.

Syntax
Luau
rconsoleclear() -> ()

Parameters

This function takes no arguments.

Returns

()

No values.

Usage notes

Clear first, then print the new heading; earlier output cannot be recovered from the console after this call.

Example

Example
Luau
rconsoleshow()
rconsoleclear()
rconsoleinfo("New session")
Kawaii documentation