when i jump i fall slowly

when i jump my player jumps but falls down slowly what should i do code:

if (Input.GetKey(KeyCode.Space))
        {
            rb.AddForce(Vector3.up * jumpForce * 50);
        }

try adjusting the “Gravity Multiplier” in the Inspector for the player.