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

> Zwraca, czy current Luau thread znajduje się w Real caller context. Function nie przyjmuje arguments i pushuje boolean result z the current caller context. Function nie sprawdza Lua call stack ani function object.

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

  ## Zwroty

  <ResponseField name={"isCaller"} type={"boolean"}>
    true, gdy current Luau thread jest tracked w Real caller context; w przeciwnym razie false.
  </ResponseField>

  ## Przykład

  Check whether the current thread is tracked by Real.

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