Volt

rconsolename

Sets the console window title.

Syntax

rconsolename(title: string) -> void

Aliases

  • rconsolesettitle
  • consolesettitle

Parameters

ParameterTypeDescription
titlestringThe new window title

Returns

This function does not return a value.

Description

rconsolename sets the title of the console window, which appears in the title bar.

Example

rconsoleshow()

-- Set a custom title
rconsolename("My Script v1.0")

rconsoleprint("Console is ready!\n")

On this page