> ## 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를 받지 않고 the current caller context의 boolean result를 push합니다. function은 Lua call stack 또는 function object를 검사하지 않습니다.

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

  ## 반환값

  <ResponseField name={"isCaller"} type={"boolean"}>
    current Luau thread가 Real caller context에서 tracked되면 true, 그렇지 않으면 false입니다.
  </ResponseField>

  ## 예제

  Check whether the current thread is tracked by Real.

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