No problem, this is one of my first games and I really like the feedback.
Do you know how can I move smoothly? I did this, is it wrong?
m_Speed = 700f;
var vertical = Input.GetAxis(m_Vertical);
var horizontal = Input.GetAxis(m_Horizontal);
Vector3 velocity = Vector3.zero;
velocity += (transform.forward * vertical);
velocity += (transform.right * horizontal);
velocity *= m_Speed * Time.fixedDeltaTime;
velocity.y = rb.velocity.y;
rb.velocity = velocity;
I thought about adding the soccer players some animation but I had no time.
The sound is working perfectly in Unity but when I'm exporting it's a bit strange, I had to change some sounds b ecause they're not playing on web and I do not know the reason.
The characters jumping was the last thing I added, thanks for you feedback, I aprreciate it