subtractScore method
subtracts another score from this one
Implementation
Score subtractScore(Score score) {
return addCommandRet(
Command(
'scoreboard players operation ${toString()} -= ${toString(entity: score.entity, score: score.score)}',
),
);
}