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

# getdeletedactors

> تعيد array table من Luau threads من actor list حيث يحتوي thread data على Actor reference، وتكون reference count أكبر من 0، وتكون the associated Actor عبارة عن expired weak reference. لا تأخذ function أي arguments. لا تعيد Actor Instance values.

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

  ## القيم الراجعة

  <ResponseField name={"threads"} type={"table"}>
    Array table تحتوي على Luau thread values لإدخالات actor التي تكون Actor weak reference الخاصة بها expired.
  </ResponseField>

  ## مثال

  List actor threads whose Actor weak reference is expired.

  ```lua theme={null}
  local deletedActorThreads = getdeletedactors()

  for _, thread in ipairs(deletedActorThreads) do
      print(thread)
  end
  ```
</div>
