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

> Zwraca boolean z ScriptContext DataModel bieżącego Luau thread. Function nie przyjmuje arguments. Odczytuje the current parallel execution status, które zwraca parallel execution status. Jeśli the current DataModel nie zwraca DataModel, function zwraca false. checkparallel jest alias dla tej samej function.

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

  ## Aliasy

  * `checkparallel`

  ## Zwroty

  <ResponseField name={"parallel"} type={"boolean"}>
    true, gdy bieżący DataModel parallel execution status jest ustawiony; false, gdy flag nie jest ustawiony albo DataModel nie jest dostępny.
  </ResponseField>

  ## Przykład

  Read whether the current DataModel is in the parallel phase.

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

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