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

> actor list から、thread data に Actor reference があり、reference count が 0 より大きく、the associated Actor が expired weak reference である Luau threads の array table を返します。この function は arguments を取りません。Actor Instance values は返しません。

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

  ## 戻り値

  <ResponseField name={"threads"} type={"table"}>
    Actor weak reference が expired である actor entries の Luau thread values を含む array table。
  </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>
