Signal to inspect. Non-RBXScriptSignal object raises a type error, and a signal without a callable Connect field raises “Signal does not have ‘Connect’ method”.
Array table of connection objects. Available fields and methods may include Enabled, Disabled, Function, Thread, Disconnect, Disable, Enable, Fire, and Defer.
Inspect an RBXScriptSignal and list the wrapped connections Real can expose.
local Players = game:GetService("Players")for _, connection in ipairs(getconnections(Players.PlayerAdded)) do print(connection.Enabled, connection.LuaConnection)end
⌘I
Assistant
Responses are generated using AI and may contain mistakes.