So I've tried this:
Part.ChildRemoved:Connect(function(part) print(part.Name) end)
This didn't work. I've also tried this :
Part.DescendantRemoving:Connect(function(part) print(part.Name) end)
and this:
Part.AnscentryChanged:Connect(function(part) print(part.Name) end)
but none worked. Can you help me?