Hello.
i’ve been tired of searching on a solution of this problem !
How can i stop the player from Moving when the player is kicking ?
and after he’s kicking i want him to back moving again
You need to describe how your player moves. Is it a rigidbody? Is it just an object whose transform you move while inputs are held?
Generally, when kicking, you’d set the player’s velocity to 0, maybe make their rigidbody kinematic, and ignore any movement inputs, until the kick is done, at which point you allow the player to move again. But anyway, show the code you’re using that makes the player move.