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.