IWareQ
Member
Jl1mbo submitted a new resource:
Scoreboard - A highly customizable plugin to add Scoreboards on your Minecraft Bedrock Server.
Scoreboard - A highly customizable plugin to add Scoreboards on your Minecraft Bedrock Server.
Read more about this resource...How to create a scoreboard:
Java:ScoreboardManager.createScoreboard() .setDisplayName("randomName", "Scoreboard Name") .setLine(1, "one line") .setLine(2, "two line") .setLine(15, "fifteen line") .showFor(player);
How to get Scoreboard to player:
Java:ScoreboardManager.getScoreboard(player); //return ScoreboardBuilder
How to remove a line:
...Java:ScoreboardManager.getScoreboard(player) .removeLine(2); // remove "two line"