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

> تعيد boolean من ScriptContext DataModel الخاص بالـ Luau thread الحالي. لا تأخذ function أي arguments. تقرأ the current parallel execution status، وهي تعيد parallel execution status. إذا أعادت the current DataModel عدم وجود DataModel، تعيد function false. checkparallel هو alias لنفس function.

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

  ## أسماء بديلة

  * `checkparallel`

  ## القيم الراجعة

  <ResponseField name={"parallel"} type={"boolean"}>
    true عندما يكون current DataModel parallel execution status مضبوطا؛ false عندما لا يكون flag مضبوطا أو عندما لا يتوفر DataModel.
  </ResponseField>

  ## مثال

  Read whether the current DataModel is in the parallel phase.

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

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