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

> Devuelve si el current Luau thread está presente en Real caller context. La function no toma arguments y empuja el boolean result de the current caller context. La function no inspecciona el Lua call stack ni un function object.

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

  ## Retornos

  <ResponseField name={"isCaller"} type={"boolean"}>
    true cuando el current Luau thread está tracked en Real caller context; de lo contrario false.
  </ResponseField>

  ## Ejemplo

  Check whether the current thread is tracked by Real.

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