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

> Gibt zurück, ob der current Luau thread in Real caller context vorhanden ist. Die function nimmt keine arguments und pusht das boolean result von the current caller context. Die function untersucht weder den Lua call stack noch ein function object.

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

  ## Rückgaben

  <ResponseField name={"isCaller"} type={"boolean"}>
    true, wenn der current Luau thread in Real caller context getrackt wird; andernfalls false.
  </ResponseField>

  ## Beispiel

  Check whether the current thread is tracked by Real.

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