//Drecrese Rigidbody Speed [SerializeField] private Rigidbody rb; void FixedUpdate() { //Decrease speed rb.velocity -= rb.velocity * 0.1f; }