Simple. How do I scale my object in the direction that it is moving?
Not 100% certain of the behaviour you’re trying to achieve. If the scale should be relevant to the objects velocity then you could do something along the lines of transform.scale = rigidbody.velocity;
If this is the player object then I’d set scale when taking movement inputs.
More information would be ideal though.