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

> Mengembalikan apakah current Luau thread ada di Real caller context. Function tidak menerima arguments dan mendorong boolean result dari the current caller context. Function tidak memeriksa Lua call stack atau function object.

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

  ## Return

  <ResponseField name={"isCaller"} type={"boolean"}>
    true saat current Luau thread tracked di Real caller context; jika tidak, false.
  </ResponseField>

  ## Contoh

  Check whether the current thread is tracked by Real.

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