Volt

getrendersteppedlist

Gets all RenderStepped connections.

Syntax

getrendersteppedlist() -> table

Returns

TypeDescription
tableArray of RenderStepped connections

Description

getrendersteppedlist returns all active connections to the RenderStepped event.

Example

local connections = getrendersteppedlist()
print("RenderStepped connections:", #connections)

for _, connection in ipairs(connections) do
    print("Connected:", connection.Function)
end

On this page