> ## 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 وتدفع 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 متتبعا في Real caller context؛ وإلا false.
  </ResponseField>

  ## مثال

  Check whether the current thread is tracked by Real.

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