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

> Geçerli Luau thread değerinin ScriptContext DataModel değerinden bir boolean döndürür. Function arguments almaz. parallel execution status değerini döndüren the current parallel execution status değerini okur. the current DataModel bir DataModel döndürmezse function false döndürür. checkparallel aynı function için alias değeridir.

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

  ## Aliaslar

  * `checkparallel`

  ## Dönüşler

  <ResponseField name={"parallel"} type={"boolean"}>
    Geçerli DataModel parallel execution status ayarlıysa true; flag ayarlı değilse veya DataModel yoksa false.
  </ResponseField>

  ## Örnek

  Read whether the current DataModel is in the parallel phase.

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

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