Hi
Im making it so when a bullet you shoot hit an object(object 2) then object 2 is going to be deleted.
But when i try it this way:
Make Object Plain 4,1,1
make object box 2,30,30,30
scale object 2,30,30,30
color object 2, RGB(255,0,0)
position object 2,0,-5,30
Do
If MouseClick()=1
Set Object to Camera Orientation 4
Position Object 4,Camera Position X(),Camera Position Y(),Camera Position Z()
Fire = 1
Endif
If Fire = 1
Move Object 4,5
Endif
If Object Collision(4,2) then delete object 2
Loop
And the bullet hits object 2 it quit and say "Object does not exist at line 22"
What is happening?
thanks
The Nerd