this works but it only hides the object and doesnt delete it.
sync on
sync rate 10
make object cube 1,1
make object cube 3,1
make object sphere 2,1
turn object right 1,90
turn object right 2,90
turn object right 3,90
move object 1, 5
move object 2, -5
move camera -10
set global collision on
do
move object 1,-0.25
if object hit(1,2) = 1 then hide object 2
if object hit(1,3) = 1 then hide object 3
sync
loop
this also kind of works in the way you want and it deletes the objects
sync on
sync rate 10
make object cube 1,1
make object cube 3,1
make object sphere 2,1
turn object right 1,90
turn object right 2,90
turn object right 3,90
move object 1, 5
move object 2, -5
move camera -10
set global collision on
do
move object 1,-0.25
if object exist(2)
if object hit(1,2) = 1
delete object 2
endif
endif
if object exist(3)
if object hit(1,3) = 1
delete object 3
endif
endif
sync
loop
Boba Fett - "put captin solo in the cargo hold"