HomeJavaModsSimpleFabricScoreboardAPI
SimpleFabricScoreboardAPI
ModsJava

SimpleFabricScoreboardAPI

by hotkeyyy · on Modrinth

A lightweight Kotlin module for Minecraft Fabric providing a simple and flexible API for managing scoreboards.

Which build do you need?

This mod ships a separate file for every mod loader and every version of the game. Pick both, then download — the wrong build installs fine and then does nothing in the game.

Mod loader

Minecraft version

⬇ Download for 26.1–26.1.2 · Fabric⬇ Download for 1.21.5–1.21.10 · Fabric⬇ Download for 1.21.5–1.21.10 · Quilt
I don't know my version or loader
Open the Minecraft launcher and look at the profile you play on — it names both, like fabric-loader-1.21.4. The version also shows in the bottom-right corner of the game's main menu.
No loader in the profile name? Then it's plain Minecraft, and these mods won't run — you need Fabric or NeoForge installed first.
SimpleFabricScoreboardAPI — screenshot 1

SimpleFabricScoreboard

SimpleFabricScoreboard is a lightweight library for Minecraft Fabric that provides a simple way to create, update, and manage sidebar scoreboards.

The project is built for mod developers who want a clean and practical API for scoreboard handling without having to work directly with all of Minecraft's lower-level scoreboard logic. The goal is to keep the library small, easy to integrate, and straightforward to use in real Fabric projects.

What it does

SimpleFabricScoreboard helps you create sidebar scoreboards for players and update them dynamically during gameplay. It is designed for common use cases such as lobbies, minigames, player stats, event displays, and other situations where you want to show structured information on the side of the screen.

The library focuses on a developer-friendly Kotlin API and a compact workflow:

Features

Example

val board = scoreboard("test_board", Component.literal("Test Board"), server) {
    +Component.literal("Line 1")
    +Component.literal("Line 2")
    +emptyLine()
    +Component.literal("Line 4")
    line(5, Component.literal("Special Line"))
}

ScoreboardManager.setPlayerScoreboard(player, board)

board.update {
    line(2, Component.literal("Updated Line 2"))
    +emptyLine()
    +Component.literal("Another Line")
}
Verified by MCModsHub

These come from our own check of the pack file, not from the source page.

Explore more