rconsoleclear Synchronous

  • cleardevconsole
  • consoleclear

Remove all accumulated text from the script console. Use it to start a fresh log view without hiding the console. Previous output is removed, so clear before printing the new session heading.

Syntax
Luau
rconsoleclear() -> ()

Parameters

This function takes no arguments.

Returns

()

This function returns no values.

Example

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