$args = array(
'post_type' => 'toys', // cpt
'meta_query' => array(
array(
'key' => 'type',
'value' => 'soft',
),
),
'meta_key' => 'price', // acf field
'orderby' => 'meta_value_num', //or meta_value
'order' => 'DESC'
);
$query = new WP_Query( $args );