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

> Menulis nol atau beberapa nilai ke Windows console saat ini melalui stdout setelah mengatur console text attribute ke error text color. Nilai dikonversi dengan Lua string conversion, dipisahkan dengan karakter tab, dan text attribute diatur ke default console text color setelahnya. Jika tidak ada console window, panggilan kembali tanpa mengonversi atau menulis apa pun.

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

  ## Alias

  * `consoleerr`

  ## Argumen

  <ParamField path={"...values"} type={"...any"}>
    Nilai opsional. Jika console ada, setiap value dikonversi dengan Lua string conversion dan digabungkan dengan karakter tab sebelum ditulis.
  </ParamField>

  ## Contoh

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

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