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

# checkcaller

> Current Luau thread değerinin Real caller context içinde bulunup bulunmadığını döndürür. Function arguments almaz ve the current caller context boolean result değerini push eder. Function Lua call stack veya function object incelemez.

<div className="real-function-page">
  ```lua theme={null}
  checkcaller(): boolean
  ```

  ## Dönüşler

  <ResponseField name={"isCaller"} type={"boolean"}>
    current Luau thread Real caller context içinde tracked ise true; aksi halde false.
  </ResponseField>

  ## Örnek

  Check whether the current thread is tracked by Real.

  ```lua theme={null}
  local tracked = checkcaller()
  print(tracked)
  ```
</div>
