> ## Documentation Index
> Fetch the complete documentation index at: https://docsuncv2.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# getrendersteppedlist

Returns a table of the functions and connections currently bound to `RunService.RenderStepped`.

```luau theme={null}
getrendersteppedlist(): {any}
```

Most commonly used to find per-frame render hooks - things like an ESP or aimbot loop that a script attached to `RenderStepped`.

## Returns

`{any}` - a table of the callbacks and connections wired to `RenderStepped` at the moment of the call.

## Example

<CodeGroup>
  ```luau Example 1 theme={null}
  <<<<<<< HEAD
  local getrendersteppedlist = getrendersteppedlist()
  =======
  -- getrendersteppedlist(): {any}
  >>>>>>> 50e30f53759b0538759af25c9b271514aa2c9290
  ```

  ```luau Example 2 theme={null}
  for _, entry in ipairs(getrendersteppedlist()) do
      print(entry)
  end
  ```
</CodeGroup>

<Tip>
  Introspects the rendering pipeline connections.
</Tip>
