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

> 現在の Luau thread の ScriptContext DataModel から boolean を返します。この function は arguments を取りません。parallel execution status を返す the current parallel execution status を読みます。the current DataModel が DataModel を返さない場合、この function は false を返します。checkparallel は同じ function の alias です。

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

  ## エイリアス

  * `checkparallel`

  ## 戻り値

  <ResponseField name={"parallel"} type={"boolean"}>
    現在の DataModel parallel execution status が設定されている場合は true。flag が設定されていない場合、または DataModel が利用できない場合は false。
  </ResponseField>

  ## 例

  Read whether the current DataModel is in the parallel phase.

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

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