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

# isourthread

> Returns whether the required Luau thread argument is currently present in Real's Real caller context. The function requires argument 1 to be a thread with type checking, converts it with thread conversion, checks Real caller context.Has(..), and returns exactly one boolean. is_our_thread is an alias for the same function.

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

  ## エイリアス

  * `is_our_thread`

  ## 引数

  <ParamField path={"thread"} type={"thread"} required>
    Required Luau thread to test against Real caller context.
  </ParamField>

  ## 戻り値

  <ResponseField name={"tracked"} type={"boolean"}>
    true when the thread is present in Real caller context; otherwise false.
  </ResponseField>

  ## 例

  Check whether a Luau thread is currently tracked by Real's caller context.

  ```lua theme={null}
  local thread = coroutine.create(function()
  end)

  local tracked = isourthread(thread)
  print(tracked)
  ```
</div>
