Fix for rocket movement

Swap the false and true in the script and the rocket will function like intended
Video:
body.freezeRotation = true;
transform.Rotate(Vector3.forward * rotateThisFrame * Time.deltaTime);
body.freezeRotation = false;

Fix:
body.freezeRotation = false;
transform.Rotate(Vector3.forward * rotateThisFrame * Time.deltaTime);
body.freezeRotation = true;

1 Like

Thanks, dude!
This is the best and short way to fix the issue :sunglasses:

Privacy & Terms