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

> Retorna um boolean do ScriptContext DataModel do Luau thread atual. A function não recebe arguments. Ela lê the current parallel execution status, que retorna o parallel execution status. Se the current DataModel não retornar um DataModel, a function retorna false. checkparallel é um alias da mesma function.

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

  ## Aliases

  * `checkparallel`

  ## Retornos

  <ResponseField name={"parallel"} type={"boolean"}>
    true quando o parallel execution status do DataModel atual está definido; false quando o flag não está definido ou nenhum DataModel está disponível.
  </ResponseField>

  ## Exemplo

  Read whether the current DataModel is in the parallel phase.

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

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