Fps Tutorial Rocket Launcher

I’m using the Fps Tutorial in my Fps game. When ever I fire the rocket, it basically shoots from were I want it to shoot from, then it moves the launching (Shooting) point of the rocket downwards til I kill my self. And some times it won’t it even fire at all. Can someone tell me what the hex is going on?

Have you got a collider on the rocket launcher? If so, it may be interfering with the rocket’s travel. You can fix this either by removing the collider from the launcher or else calling Physics.IgnoreCollision for the colliders on the rocket and the launcher:-

Physics.IgnoreCollision(rocket.collider, launcher.collider);

If this isn’t the problem then perhaps you could give a bit more detail about what is going wrong.