Does destroying events disconnect anything connected to them?

local event = Instance.new("BindableEvent")
event.Event:Connect(function() end)

event:Destroy()

does the connection get disconnected in this case?

(I’ve searched this but only got results about the script itself getting destroyed)

yes, :destroy disconnects all connections related to it

1 Like

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.