Help with creating a fireball

So my character shoots a fireball projectile, and it works perfectly except that it just passes through objects, I need it to be destroyed when it collides with anything. I’ve tried a dozen and one tutorials trying to make it work properly but I can’t for the life of me figure it out. Could someone point me in the right direction?

You need to enable collision on both your fireball and the object it collides with.

One easy way to do this is to check Simulation Generates Hit Events [x] and set the Collision Preset to BlockAll. Again, this needs to be set on both objects that will be colliding with eachother.

I did that, it doesn’t seem to be doing anything

Can you post screenshots of the collision sections of the two objects?

here you go

Your fireball is set to Query Only (No Physics Collision) – which, as it says, disables physics collisions. Change it to Collision Enabled (Query and Physics) or Physics Only (No Query Collision) depending on whether you also want overlap events or not.

I tried that, it still didn’t work