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

> Retorna se o current Luau thread está presente em Real caller context. A function não recebe arguments e faz push do boolean result de the current caller context. A function não inspeciona o Lua call stack nem um function object.

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

  ## Retornos

  <ResponseField name={"isCaller"} type={"boolean"}>
    true quando o current Luau thread está tracked em Real caller context; caso contrário false.
  </ResponseField>

  ## Exemplo

  Check whether the current thread is tracked by Real.

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