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

# isparallel

> Returns a boolean from the current Luau thread's ScriptContext DataModel. The function takes no arguments. It reads the current current parallel execution status. If the current DataModel returns no DataModel, the function returns false. checkparallel is an alias for the same function.

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

  ## Aliases

  * `checkparallel`

  ## Returns

  <ResponseField name={"parallel"} type={"boolean"}>
    true when the current execution context is parallel; false when the flag is not set or the status cannot be resolved.
  </ResponseField>

  ## Example

  Read whether the current DataModel is in the parallel phase.

  ```lua theme={null}
  local parallel = isparallel()
  print(parallel)

  print(checkparallel())
  ```
</div>
