rconsolename Synchronous

  • consolename
  • consolesettitle
  • rconsolesettitle

Change the title at the top of the script console. A named console makes it obvious which tool is asking for input or reporting progress.

Syntax
Luau
rconsolename(title: string) -> ()

Parameters

Function parameters
ParameterTypeDescription
titlestringNew console title.

Returns

()

No values.

Usage notes

This changes the heading; it does not add an output line.

Example

Example
Luau
rconsoleshow()
rconsolename("Asset importer")
rconsoleprint("Waiting for a file")
Kawaii documentation