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

# rconsolewarn

> warning console text attribute ile gecerli Windows console icine stdout uzerinden sifir veya daha fazla deger yazar. console window yoksa cagri herhangi bir seyi donusturmeden veya yazmadan doner. console varsa her argument Lua string conversion ile donusturulur, tab karakterleriyle birlestirilir ve runtime value uzerinden yazilir. Lua string conversion error uretirse rconsolewarn bunu yakalamaz. Function yazmadan once console text attribute degerini FOREGROUND_RED | FOREGROUND_GREEN | FOREGROUND_INTENSITY olarak, sonra default console text color olarak ayarlar. newline eklemez, warning prefix eklemez, console olusturmaz veya gostermez ve Luau warn ya da Roblox Output cagirmaz. consolewarn ayni function icin alias degeridir.

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

  ## Aliaslar

  * `consolewarn`

  ## Argümanlar

  <ParamField path={"...values"} type={"...any"}>
    Istege bagli degerler. console varsa her value Lua string conversion ile donusturulur ve yazmadan once tab karakterleriyle birlestirilir.
  </ParamField>

  ## Örnek

  Write values to the current Windows console with the warning console text attribute. Values are tab-separated, no newline or warning prefix is added, and consolewarn is the same function.

  ```lua theme={null}
  rconsolecreate()
  rconsolewarn("Retrying request", 3)
  rconsolewarn("\n")
  ```
</div>
