HandleAdornemnts Adornee not cleared when Adornee Destroyed

As the title says.

You can test in studio with the following code, after 5 seconds you’ll notice the Adornee is still showing:

local a = Instance.new( "BoxHandleAdornment", workspace ) local p = Instance.new( "Part", workspace ) p.Anchored = true a.Adornee = p a.AlwaysOnTop = true a.ZIndex = 1 wait( 5 ) p:Destroy( )

And here’s a gif to demonstrate ( Watch the black cylinders on the green part and the Adornee property )

Expected result: When the adornee is Destroyed the HandleAdornment should no longer show as it should no longer have an Adornee.

2 Likes

This is still an issue. I’m having to hook up AncestryChanged to the adornee just to make this work.

1 Like

Bump, still an issue, anyone have any other solutions?