Hello,
You can use two PHP functions array_push() and array_sum() to sum the number field value in a cloneable group. For example:
$groups = rwmb_meta( 'group_point', [ 'object_type' => 'user' ], get_current_user_id() );
$total_points = [];
foreach ( $groups as $key => $group ) {
// Field number_point:
array_push( $total_points, $group[ 'number_point' ] );
}
echo array_sum( $total_points );