Check your scene to see if any object is colliding with your player.
Change
Debug.Log("HIT");
to
Debug.Log(name + " was HIT by " + other.name);
To find out what is colliding with your player. If may be the ground, an attached equipment item, etc.
↧