> ## 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, когда текущий 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>
