-
What do you want to achieve? Keep it simple and clear!
I want to destroy the ship after a specific weld has been destroyed/disabled by an explosion. -
What is the issue? Include screenshots / videos if possible!
It doesn’t work. Reason? The changed Event that is supposed to detect when the WeldConstraint is disabled is not working. -
What solutions have you tried so far? Did you look for solutions on the Developer Hub?
I tried using both.Changed
and:GetPropertyChangedSignal
but they won’t work. I also tried using only Welds and the destroyed event but even that won’t work.
I’m trying to destroy the ship after the weld constraint connecting the seat and the part below it is disabled/removed.
-- the bit of code handling the aforementioned logic
seat.WeldConstraint:GetPropertyChangedSignal("Enabled"):Connect(function()
seat.Parent:Destroy()
end)