> ## 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.

# rconsoleerr

> Schreibt null oder mehr Werte in die aktuelle Windows console über stdout, nachdem das console text attribute auf error text color gesetzt wurde. Werte werden mit Lua string conversion konvertiert, mit Tab-Zeichen getrennt und das text attribute wird danach auf default console text color gesetzt. Wenn keine console window existiert, kehrt der Aufruf ohne etwas zu konvertieren oder zu schreiben zurück.

<div className="real-function-page">
  ```lua theme={null}
  rconsoleerr(...values?: ...any)
  ```

  ## Aliase

  * `consoleerr`

  ## Argumente

  <ParamField path={"...values"} type={"...any"}>
    Optionale Werte. Wenn eine console existiert, wird jeder value mit Lua string conversion konvertiert und vor dem Schreiben mit tab-Zeichen verbunden.
  </ParamField>

  ## Beispiel

  Write a bright red message to the current Windows console without throwing a Luau error.

  ```lua theme={null}
  rconsolecreate()
  rconsoleerr("Request failed", 500, "
  ")
  ```
</div>
