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

> 현재 Luau thread의 ScriptContext DataModel에서 boolean을 반환합니다. 이 function은 arguments를 받지 않습니다. parallel execution status를 반환하는 the current parallel execution status을 읽습니다. the current DataModel이 DataModel를 반환하지 않으면 function은 false를 반환합니다. checkparallel은 같은 function의 alias입니다.

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

  ## 별칭

  * `checkparallel`

  ## 반환값

  <ResponseField name={"parallel"} type={"boolean"}>
    현재 DataModel parallel execution status가 설정되어 있으면 true, flag가 설정되어 있지 않거나 DataModel를 사용할 수 없으면 false입니다.
  </ResponseField>

  ## 예제

  Read whether the current DataModel is in the parallel phase.

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

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