> ## 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 в Real caller context. Function не принимает arguments и push-ит boolean result от the current caller context. Function не проверяет Lua call stack или function object.

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

  ## Возвраты

  <ResponseField name={"isCaller"} type={"boolean"}>
    true, когда current Luau thread tracked в Real caller context; иначе false.
  </ResponseField>

  ## Пример

  Check whether the current thread is tracked by Real.

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