fixes persistent text issue of '$$anonymous$$' replacing 'M' everywhere
fixes longstanding annoying text issue of '$$anonymous$$' replacing 'M' everywhere, example:if($$anonymous$$athf.Abs(rigidbody.velocity.x) > maxSpeed || $$anonymous$$athf.Abs(rigidbody.velocity.y) > maxSpeed)
script fix:if(Mathf.Abs(rigidbody.velocity.x) > maxSpeed || Mathf.Abs(rigidbody.velocity.y) > maxSpeed)