Connection
A Connection is a Class used to manage the connection between a listener and a signal, it is returned when connecting to a signal, and can be used to disconnect the listener from the signal.
Functions
Disconnect
Connection:Disconnect() → ()
Disconnects a connection from a Signal, any future :Fire calls
will not invoke this connection's listener.
local Connection = Signal:Connect(function(Args) end)
Connection:Disconnect()