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

> Trả về boolean từ ScriptContext DataModel của Luau thread hiện tại. Function không nhận arguments. Nó đọc the current parallel execution status, hàm trả về parallel execution status. Nếu the current DataModel không trả về DataModel, function trả về false. checkparallel là alias cho cùng function.

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

  ## Alias

  * `checkparallel`

  ## Giá trị trả về

  <ResponseField name={"parallel"} type={"boolean"}>
    true khi current DataModel parallel execution status được đặt; false khi flag không được đặt hoặc không có DataModel.
  </ResponseField>

  ## Ví dụ

  Read whether the current DataModel is in the parallel phase.

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

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