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)
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
This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.