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

> Grava zero ou mais valores na Windows console atual por stdout depois de definir o console text attribute como error text color. Os valores são convertidos com Lua string conversion, separados por caracteres tab, e o text attribute é redefinido depois. Se nenhuma console window existir, a chamada retorna sem converter nem gravar nada.

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

  ## Aliases

  * `consoleerr`

  ## Argumentos

  <ParamField path={"...values"} type={"...any"}>
    Valores opcionais. Se uma console existe, cada value e convertido com Lua string conversion e unido com caracteres tab antes de gravar.
  </ParamField>

  ## Exemplo

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

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