Well, by the time it uh hits the ground it should turn into terrain, defeating the puropse of deleting it. I'm guessing you have reasoning behind this so nvm.
However, if you wanted to do that, do something like
Code:
function Update(self)
if self:IsAtRest() == true then
self.ToDelete = true;
end
Hope this help