> ## 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 を取らず、the current caller context の boolean result を push します。function は Lua call stack や function object を検査しません。

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

  ## 戻り値

  <ResponseField name={"isCaller"} type={"boolean"}>
    current Luau thread が Real caller context で tracked されている場合は true。それ以外は false。
  </ResponseField>

  ## 例

  Check whether the current thread is tracked by Real.

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