I want a way of detecting when the item has been destroyed from the Debris, however, this method does not work. I can’t find anything on the Debris article on DevHub. It does specify that it works in the same way as Instance:Destroy() (which would trigger the ChildRemoved function) but it doesn’t?
Should I use a delay function instead??
local function RemoveFeed(feed)
print(1) -- doesn't print
end
Debris:AddItem(NewFeed, 10)
NewFeed.Parent = Feed
Feed.ChildRemoved:Connect(RemoveFeed)


