rconsolename Synchronous

  • consolename
  • consolesettitle
  • rconsolesettitle

Set the title displayed by the script console. Give the console a title that identifies the current tool or task. This changes the heading rather than adding a line to the output.

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

Parameters

Function parameters
ParameterTypeDescription
titlestringNew console title.

Returns

()

This function returns no values.

Example

Example
Luau
rconsoleshow()
rconsolename("Settings editor")
rconsoleprint("Ready")
Kawaii documentation