Order RSS content by an advanced custom field value

hope this code will helpful for you

    $args = array(
  'post_type'         =>'event',
  'post_status'       => 'publish',
  'posts_per_page'    => -1,
  'meta_key'          => 'event_date',
  'orderby'           => 'meta_value_num',
  'order'             => 'DESC'
);