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

> Renvoie un boolean depuis le ScriptContext DataModel du Luau thread actuel. La function ne prend aucun argument. Elle lit the current parallel execution status, qui renvoie l'parallel execution status. Si the current DataModel ne renvoie aucun DataModel, la function renvoie false. checkparallel est un alias de la même function.

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

  ## Alias

  * `checkparallel`

  ## Retours

  <ResponseField name={"parallel"} type={"boolean"}>
    true lorsque l'parallel execution status du DataModel actuel est défini; false lorsque le flag n'est pas défini ou qu'aucun DataModel n'est disponible.
  </ResponseField>

  ## Exemple

  Read whether the current DataModel is in the parallel phase.

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

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