/

/scoreboard

op 2Scoreboard

The scoreboard stores a number for every player against a named objective. Objectives with the dummy criterion only change when a command says so; every other criterion tracks something the game already counts, like deaths or blocks mined.

Command2 to fix
35
/scoreboard objectives add dummy ""
  • Objective is required.
  • Criterion is required.
Press C to copy

Objective is required.

Criterion is required.

optional
Previewapproximate

Nothing to show yet

1

Examples

  • Track kills
    /scoreboard objectives add kills playerKillCount
  • Show it on the sidebar
    /scoreboard objectives setdisplay sidebar kills
  • Give a point
    /scoreboard players add @s kills 1

Common questions about /scoreboard

What does the dummy criterion mean?

It means the game never touches the value — only your commands do. Use it for anything you are counting yourself, such as a minigame score.

How do I show a scoreboard on the side of the screen?

/scoreboard objectives setdisplay sidebar <objective>. Use list for the tab menu and below_name for over players’ heads.

How do I copy one score into another?

Use the operation action with =. /scoreboard players operation @s total = @s round copies the round score into total.