> ## Documentation Index
> Fetch the complete documentation index at: https://docs.projectreal.gg/llms.txt
> Use this file to discover all available pages before exploring further.

# rconsolename

> Windows console title update로 현재 Windows console window의 title을 설정합니다. 첫 번째 argument는 string이어야 하며 console existence check 전에 검사됩니다. string check가 성공한 뒤 console window가 없으면 호출은 아무 작업도 하지 않고 반환됩니다.

<div className="real-function-page">
  ```lua theme={null}
  rconsolename(text: string)
  ```

  ## 별칭

  * `consolename`
  * `rconsolesettitle`
  * `consolesettitle`

  ## 인수

  <ParamField path={"text"} type={"string"} required>
    작업에 사용되는 텍스트 값입니다.
  </ParamField>

  ## 예제

  Set the current Windows console window title.

  ```lua theme={null}
  rconsolecreate()
  rconsolename("Real Console")
  ```
</div>
