Update_Images.sh typo

the decision tree for this bash script doesn't check for "$choice" == "8"

elif [ "$choice" == "7" ]; then
    echo "You chose BEEESSS + Okbd."
    cp -r beeesssokbdimg/* "$destinationFolder/"
elif [ "$choice" == "7" ]; then
    echo "You chose BEEESSS + Hikari Female + WIP Reworked Animations."
    cp -r beeessshfreworkedanimationsimg/* "$destinationFolder/"

should be

elif [ "$choice" == "7" ]; then
    echo "You chose BEEESSS + Okbd."
    cp -r beeesssokbdimg/* "$destinationFolder/"
elif [ "$choice" == "8" ]; then
    echo "You chose BEEESSS + Hikari Female + WIP Reworked Animations."
    cp -r beeessshfreworkedanimationsimg/* "$destinationFolder/"