Is there a way to get when Debris has removed an item?

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)
1 Like

If it doesn’t trigger ChildRemoved, would using GetChangedPropertySignal(“Parent”) Fire? If not I’m stumped.

No. Feed is the folder containing all the new feeds. I’m checking if child (NewFeed) has been removed from Feed. The NewFeed is parented to Feed

Nvm I made a mistake lmao. charrs

I have just tested this in my own place and it printed for me. Where is your script located?