More Placeholders for FancyMenu

A mod which brings back the Scoreboard, Tag and Team placeholders which were removed in FancyMenu 3.9.0 - but now with server-side support!

More Placeholders

A mod which brings back the Scoreboard, Tag and Team placeholders which were removed in FancyMenu 3.9.0 - but now with server-side support!

What does More Placeholders do?

FancyMenu 3.9.0 removed the Scoreboard placeholders because the client only gets data for a scoreboard if it's set in a display slot. It also removed placeholders related to tags and teams.

More Placeholders adds these back, and also syncs scoreboard and tag data to the client so that the placeholders work!

It also adds a new placeholder: Players With Score (players_with_score). This returns a list of players whose score for a particular objective matches a specified number or range.

Placeholders

Scoreboard:

  • Scoreboard Score (scoreboard_score) - Returns the score of a player for a given scoreboard objective.
  • Scoreboard Objectives List (scoreboard_objectives_list) - Returns a separated list of all scoreboard objective names.
  • Scoreboard Tracked Players (scoreboard_tracked_players) - Returns a separated list of all score holders tracked by the scoreboard (i.e. anyone with at least one score).
  • Scoreboard Display Slot (scoreboard_display_slot) - Returns the name of the objective currently displayed in the given display slot.
  • Scoreboard Display Slot (scoreboard_display_slot) - Returns the name of the objective currently displayed in the given display slot.
  • Scoreboard Has Score (scoreboard_has_score) - Returns true if the given player has a score for the given objective, false otherwise.
  • Scoreboard Objective Display Name (scoreboard_objective_display_name) - Returns the display name of a scoreboard objective.
  • Scoreboard Objective Criteria (scoreboard_objective_criteria) - Returns the criteria of a scoreboard objective (e.g. dummy, playerKillCount).
  • Scoreboard Objective Render Type (scoreboard_objective_render_type) - Returns the render type of a scoreboard objective — either integer or hearts.
  • Scoreboard Player Scores List (scoreboard_player_scores_list) - Returns a formatted, separated list of all scores a player has across every objective.
  • Scoreboard Objective Count (scoreboard_objective_count) - Returns the total number of scoreboard objectives.

Team:

  • Player Team (player_team) - Returns the scoreboard team name of the specified player. Returns empty if the player is not on a team.

Tag:

  • Players With Score (players_with_score) - Returns a separated list of all score holders whose score for a given objective matches a value or range. Uses the same range syntax as Minecraft commands.
  • Player Has Tag (player_has_tag) - Returns true if the named player has the given tag (as applied by /tag), false otherwise.
  • Player Tags List (player_tags_list) - Returns a sorted, separated list of all tags on the named player.

Usage Guide

Note: Although this mod can be used only on the client, for scoreboard and tag placeholders to work fully the mod must also be installed on the server. Without the server-side install, these placeholders fall back to whatever vanilla syncs, which is limited.

Scoreboard


Scoreboard Score (scoreboard_score)

Returns the score of a player for a given scoreboard objective.

{"placeholder":"scoreboard_score","values":{"player":"Player1","objective":"my_objective"}}

Parameters:

  • player: The name of the score holder
  • objective: The name of the scoreboard objective

Example output: 42


Scoreboard Objectives List (scoreboard_objectives_list)

Returns a separated list of all scoreboard objective names.

{"placeholder":"scoreboard_objectives_list","values":{"separator":", "}}

Parameters:

  • separator: Text to join objective names with (default: ", ")

Example output: my_objective, kills, deaths


Scoreboard Tracked Players (scoreboard_tracked_players)

Returns a separated list of all score holders tracked by the scoreboard (i.e. anyone with at least one score).

{"placeholder":"scoreboard_tracked_players","values":{"separator":", "}}

Parameters:

  • separator: Text to join names with (default: ", ")

Example output: Player1, Player2, Steve


Scoreboard Display Slot (scoreboard_display_slot)

Returns the name of the objective currently displayed in the given display slot.

{"placeholder":"scoreboard_display_slot","values":{"slot":"sidebar"}}

Parameters:

  • slot: The display slot to query. Valid values: list, sidebar, below_name

Example output: my_objective


Scoreboard Has Score (scoreboard_has_score)

Returns true if the given player has a score for the given objective, false otherwise.

{"placeholder":"scoreboard_has_score","values":{"player":"Player1","objective":"my_objective"}}

Parameters:

  • player: The name of the score holder
  • objective: The name of the scoreboard objective

Example output: true


Scoreboard Objective Display Name (scoreboard_objective_display_name)

Returns the display name of a scoreboard objective.

{"placeholder":"scoreboard_objective_display_name","values":{"objective":"my_objective"}}

Parameters:

  • objective: The internal name of the scoreboard objective

Example output: My Objective


Scoreboard Objective Criteria (scoreboard_objective_criteria)

Returns the criteria of a scoreboard objective (e.g. dummy, playerKillCount).

{"placeholder":"scoreboard_objective_criteria","values":{"objective":"my_objective"}}

Parameters:

  • objective: The name of the scoreboard objective

Example output: dummy


Scoreboard Objective Render Type (scoreboard_objective_render_type)

Returns the render type of a scoreboard objective — either integer or hearts.

{"placeholder":"scoreboard_objective_render_type","values":{"objective":"my_objective"}}

Parameters:

  • objective: The name of the scoreboard objective

Example output: integer


Scoreboard Player Scores List (scoreboard_player_scores_list)

Returns a formatted, separated list of all scores a player has across every objective.

{"placeholder":"scoreboard_player_scores_list","values":{"player":"Player1","separator":", ","format":"%objective%: %score%"}}

Parameters:

  • player: The name of the score holder
  • separator: Text to join entries with (default: ", ")
  • format: Format string for each entry. Use %objective% and %score% as placeholders (default: %objective%: %score%)

Example output: my_objective: 42, kills: 7, deaths: 3


Scoreboard Objective Count (scoreboard_objective_count)

Returns the total number of scoreboard objectives.

{"placeholder":"scoreboard_objective_count"}

Example output: 3


Player Team (player_team)

Returns the scoreboard team name of the specified player. Returns empty if the player is not on a team.

{"placeholder":"player_team","values":{"player_name":"Joel4848"}}

Parameters:

  • player_name: The name of the player to look up

Example output: Pandas


Players With Score (players_with_score)

Returns a separated list of all score holders whose score for a given objective matches a value or range. Uses the same range syntax as Minecraft commands.

{"placeholder":"players_with_score","values":{"objective":"my_objective","score":"1..","separator":", "}}

Parameters:

  • objective: The name of the scoreboard objective
  • score: A score value or range:
    • 5 — exactly 5
    • 3..7 — between 3 and 7 inclusive
    • 3.. — 3 or above
    • ..7 — 7 or below
  • separator: Text to join names with (default: ", ")

Example output: Player1, Player2


World


Player Has Tag (player_has_tag)

Returns true if the named player has the given tag (as applied by /tag), false otherwise.

{"placeholder":"player_has_tag","values":{"player_name":"Steve","tag_name":"my_tag"}}

Parameters:

  • player_name: The name of the player to check
  • tag_name: The tag to look for

Example output: true


Player Tags List (player_tags_list)

Returns a sorted, separated list of all tags on the named player.

{"placeholder":"player_tags_list","values":{"player_name":"Steve","separator":", "}}

Parameters:

  • player_name: The name of the player to check
  • separator: Text to join tag names with (default: ", ")

Example output: my_tag, other_tag, third_tag

License

CC BY-NC-SA 4.0

The More Placeholders for FancyMenu Team

profile avatar
  • 1
    Followers
  • 7
    Projects
  • 6.1K
    Downloads

More from joel4848View all

  • Nicknames Everywhere project image

    Nicknames Everywhere

    • 195
    • Mods

    Simple, powerful, formattable nicknames and pronouns that display everywhere I could think of: nametags, chat, scoreboards, in commands, on the player list etc.

    • 195
    • June 28, 2026
    • Mods
  • Simple Scoreboard Tweaks project image

    Simple Scoreboard Tweaks

    • 11
    • Mods

    Adds simple tweaks for the scoreboard sidebar

    • 11
    • June 26, 2026
    • Mods
  • Command Runner project image

    Command Runner

    • 16
    • Mods

    Easily bulk-run, schedule, save and load lists of commands

    • 16
    • June 17, 2026
    • Mods
    • +1
  • Visible Ghosts project image

    Visible Ghosts

    • 3.1K
    • Mods

    Renders invisible players as if you were on their team/in spectator mode, and makes them easier to see

    • 3.1K
    • March 30, 2026
    • Mods
  • Nicknames Everywhere project image

    Nicknames Everywhere

    • 195
    • Mods

    Simple, powerful, formattable nicknames and pronouns that display everywhere I could think of: nametags, chat, scoreboards, in commands, on the player list etc.

    • 195
    • June 28, 2026
    • Mods
  • Simple Scoreboard Tweaks project image

    Simple Scoreboard Tweaks

    • 11
    • Mods

    Adds simple tweaks for the scoreboard sidebar

    • 11
    • June 26, 2026
    • Mods
  • Command Runner project image

    Command Runner

    • 16
    • Mods

    Easily bulk-run, schedule, save and load lists of commands

    • 16
    • June 17, 2026
    • Mods
    • +1
  • Visible Ghosts project image

    Visible Ghosts

    • 3.1K
    • Mods

    Renders invisible players as if you were on their team/in spectator mode, and makes them easier to see

    • 3.1K
    • March 30, 2026
    • Mods