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

# getactorthreads

> actor thread list içinden Luau threads değerlerinin array table halini döndürür. Function arguments almaz. ScriptContext içinden actor list bounds değerlerini okur, her actor state entry üzerinden geçer, stored global state değerini Luau thread değerine decrypt eder ve yalnızca valid threads olan entries değerlerini dahil eder.

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

  ## Aliaslar

  * `getactorstates`

  ## Dönüşler

  <ResponseField name={"threads"} type={"{thread}"}>
    Luau threads olarak push edilen actor Luau thread values array table değeri.
  </ResponseField>

  ## Örnek

  List Luau threads from the ScriptContext actor state list.

  ```lua theme={null}
  for _, thread in ipairs(getactorthreads()) do
      print(thread)
  end
  ```
</div>
