Deregister script on specific user’s BuddyPress page

Ok finally i find the solution using the bp_is_change_avatar

add_action('wp_enqueue_scripts', 'cutting',100);

function cutting() {
if(bp_is_change_avatar()){
   wp_dequeue_script( 'XXX );

}
}

Thank you everybody for your help