> ## 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 supplied Luau thread is tracked as a Real-created thread. is_our_thread is an alias.

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

  ## Aliases

  * `is_our_thread`

  ## Arguments

  <ParamField path={"thread"} type={"thread"} required>
    Luau thread to check.
  </ParamField>

  ## Returns

  <ResponseField name={"tracked"} type={"boolean"}>
    true when the thread is tracked as a Real-created thread; otherwise false.
  </ResponseField>

  ## Example

  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>
