{"id":81593,"date":"2026-06-04T19:36:01","date_gmt":"2026-06-04T16:36:01","guid":{"rendered":"https:\/\/vpesports.com\/minecraft\/mods\/hologramlib\/"},"modified":"2026-06-04T19:36:01","modified_gmt":"2026-06-04T16:36:01","slug":"hologramlib","status":"publish","type":"mod","link":"https:\/\/vpesports.com\/minecraft\/mods\/hologramlib\/","title":{"rendered":"HologramLib | Leaderboards &#038; Custom Holograms"},"content":{"rendered":"<p><center><\/p>\n<p><b>FOLIA \u2705 PAPER \u2705 PURPUR \u2705 1.19.4 &#8211; 1.21.5 \u2705<\/b><\/p>\n<p><img decoding=\"async\" src=\"https:\/\/img.shields.io\/badge\/Source%20Code-c372ea\" alt=\"Version\"><br \/>\n<img decoding=\"async\" src=\"https:\/\/img.shields.io\/badge\/Discord_Server-7289DA?style=flat&#038;logo=discord&#038;logoColor=white\" alt=\"Join Discord Server\" style=\"border-radius: 15px; height: 20px;\"><br \/>\n<img decoding=\"async\" src=\"https:\/\/img.shields.io\/badge\/Wiki-13B8E1\" alt=\"Version\"><br \/>\n<img decoding=\"async\" src=\"https:\/\/jitpack.io\/v\/HologramLib\/HologramLib.svg\" alt=\"jitpack\"><br \/>\n<\/p>\n<p><img decoding=\"async\" src=\"https:\/\/github.com\/user-attachments\/assets\/75e2fce6-0be0-4621-be38-ff1d0cb5ca0a\" alt=\"HologramLib\"><\/p>\n<p>**An easy-to-use, packet-based text\/item\/block display hologram API with MiniMessage and emoji support.**<br \/>\n<\/center><\/p>\n<p>## FEATURES<br \/>\n&#8211; Text, Block &#038; Item Holograms<br \/>\n&#8211; Text animations<br \/>\n&#8211; Minimessage support<br \/>\n&#8211; Packet based<br \/>\n&#8211; Per player holograms<br \/>\n&#8211; Leaderboard generators<br \/>\n&#8211; Advanced hologram customization<br \/>\n&#8211; Attachment and parenting support<br \/>\n&#8211; Flexible rendering modes<\/p>\n<details>\n<summary>DISCLAIMER<\/summary>\n<p>This API only works on 1.19.4+  <br \/>\nThe holograms do not work for Bedrock players  <br \/>\nThere can be some issues when using spigot on older versions (Preferably use Paper or a fork of it)<br \/>\nIt&#8217;s just a Java API. This plugin does not work standalone.  <br \/>\n<\/details>\n<p>## SETUP<br \/>\n&#8211; Download the plugin .jar<br \/>\n&#8211; Download Packet Events<br \/>\n&#8211; Upload the .jar files onto your server (*yourserver\/plugins* folder)<br \/>\n&#8211; Add the plugin as a dependency to your plugin and use it<\/p>\n<p>## PROJECT SETUP<br \/>\n**Gradle installation**<br \/>\n&#8220;`groovy<br \/>\nrepositories {<br \/>\n  maven { url &#8216;https:\/\/jitpack.io&#8217; }<br \/>\n}<\/p>\n<p>dependencies {<br \/>\n  compileOnly &#8216;com.github.HologramLib:HologramLib:1.7.6&#8217;<br \/>\n}<br \/>\n&#8220;`<br \/>\n**Maven installation**<br \/>\n&#8220;`xml<br \/>\n<repository><br \/>\n  <id>jitpack.io<\/id><br \/>\n  <url>https:\/\/jitpack.io<\/url><br \/>\n<\/repository><\/p>\n<p><dependency><br \/>\n  <groupId>com.github.HologramLib<\/groupId><br \/>\n  <artifactId>HologramLib<\/artifactId><br \/>\n  <version>1.7.6<\/version><br \/>\n  <scope>provided<\/scope><br \/>\n<\/dependency><br \/>\n&#8220;`<br \/>\nAdd this to your plugin<br \/>\n`plugin.yml`<br \/>\n&#8220;`yml<br \/>\ndepend:<br \/>\n  &#8211; HologramLib<br \/>\n&#8220;`<\/p>\n<p># Code examples<\/p>\n<p>### Getting the instance<br \/>\n&#8220;`java<br \/>\nprivate HologramManager hologramManager;<\/p>\n<p>@Override<br \/>\npublic void onLoad() {<br \/>\n    HologramLib.onLoad(this); \/*Only needed if you shade HologramLib*\/<br \/>\n}<\/p>\n<p>@Override<br \/>\npublic void onEnable() {<br \/>\n    hologramManager = HologramLib.getManager().orElse(null);<br \/>\n    if (hologramManager == null) {<br \/>\n        getLogger().severe(&#8220;Failed to initialize HologramLib manager.&#8221;);<br \/>\n        return;<br \/>\n    }<br \/>\n}<br \/>\n&#8220;`<\/p>\n<p>### Creating a hologram<br \/>\n&#8220;`java<br \/>\nTextHologram hologram = new TextHologram(&#8220;unique_id&#8221;)<br \/>\n    .setMiniMessageText(&#8220;<aqua>Hello world!&#8221;)<br \/>\n    .setSeeThroughBlocks(false)<br \/>\n    .setBillboard(Display.Billboard.VERTICAL)<br \/>\n    .setShadow(true)<br \/>\n    .setScale(1.5F, 1.5F, 1.5F)<br \/>\n    .setTextOpacity((byte) 200)<br \/>\n    .setBackgroundColor(Color.fromARGB(60, 255, 236, 222).asARGB())<br \/>\n    .setAlignment(TextDisplay.TextAlignment.CENTER)<br \/>\n    .setViewRange(1.0)<br \/>\n    .setMaxLineWidth(200);<br \/>\n&#8220;`<\/p>\n<p>### Spawning and despawning<br \/>\n&#8220;`java<br \/>\nhologramManager.spawn(hologram, <location>);<br \/>\nhologramManager.remove(hologram);<br \/>\n&#8220;`<\/p>\n<p>### Animations<br \/>\n&#8220;`java<br \/>\nTextAnimation animation = new TextAnimation()<br \/>\n        .addFrame( &#8220;<red>First frame&#8221;)<br \/>\n        .addFrame(&#8220;<green>Second frame&#8221;)<br \/>\n        .addFrame(&#8220;Third framen&#8221; +<br \/>\n                &#8220;Second line in third frame&#8221;)<br \/>\n        .addFrame(&#8220;Last frame&#8221;);<br \/>\nanimation.setDelay(20L); \/\/ 1 second<br \/>\nanimation.setDelay(20L * 2);<br \/>\nhologramManager.applyAnimation(this.hologram, animation);<br \/>\n&#8220;`<\/p>\n<p>### Leaderboard<\/p>\n<p><img decoding=\"async\" src=\"https:\/\/github.com\/max1mde\/HologramLib\/raw\/master\/assets\/leaderboard.png\" width=\"600\"><\/p>\n<p>&#8220;`java<br \/>\nMap<Integer, String> leaderboardData = new LinkedHashMap<>() {{<br \/>\n    put(1, &#8220;MaximDe:1000&#8221;);<br \/>\n    put(2, &#8220;dream:950&#8221;);<br \/>\n    put(3, &#8220;BastiGHG:500&#8221;);<br \/>\n    put(4, &#8220;Wichtiger:400&#8221;);<br \/>\n    \/\/ &#8230; more entries<br \/>\n}};<\/p>\n<p>LeaderboardHologram leaderboard = hologramManager.generateLeaderboard(<br \/>\n        location,<br \/>\n        leaderboardData,<br \/>\n        LeaderboardHologram.LeaderboardOptions.builder()<br \/>\n                .title(&#8220;Top Players &#8211; Kills&#8221;)<br \/>\n                .showEmptyPlaces(true)<br \/>\n                .scale(1.2f)<br \/>\n                .maxDisplayEntries(10)<br \/>\n                .suffix(&#8220;kills&#8221;)<br \/>\n                .topPlayerHead(true)<br \/>\n                .build()<br \/>\n);<br \/>\n&#8220;`<\/p>\n<p># Wiki<br \/>\nCode examples &#038; more<br \/>\nhttps:\/\/github.com\/HologramLib\/HologramLib\/wiki<\/p>\n<p># Example\/Showcase Plugin<br \/>\nhttps:\/\/github.com\/HologramLib\/ExamplePlugin<\/p>\n<p>More info<br \/>\nhttps:\/\/maximjsx.com\/projects\/hologramlib<\/p>\n<p><img decoding=\"async\" src=\"https:\/\/i.imgur.com\/pniirmi.png\"><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Packet-based text display library with animations, leaderboards, emojis, minimessage, and more!<\/p>\n","protected":false},"featured_media":81594,"template":"","meta":{"_minecraft_slug":"hologramlib","_minecraft_project_id":"bDTfffy3","_minecraft_author":"maximjsx","_minecraft_license":"GPL-3.0-or-later","_minecraft_downloads":6775,"_minecraft_follows":30,"_minecraft_client_side":"unsupported","_minecraft_server_side":"required","_minecraft_storage_type":"zip","_minecraft_archive_name":"hologramlib.zip","_minecraft_size_bytes":19748593,"_minecraft_version_count":21,"_minecraft_updated_at":"2026-05-16T02:51:46.876531Z","_minecraft_date_created":"2024-06-23T04:49:38.554583Z","_minecraft_date_modified":"2025-10-30T16:06:33.954814Z","_minecraft_project_url":"https:\/\/modrinth.com\/mod\/hologramlib","_minecraft_icon_attachment_id":81594,"_minecraft_imported_at":"2026-06-04T16:36:05+00:00","_minecraft_import_hash":"782eab66d8b4bac668501067740b47e1","_minecraft_versions":"","_minecraft_links":"","_minecraft_gallery":"","_minecraft_api_metadata":""},"mod_category":[124,156,125,873,127,128,867,129,123,92],"mod_loader":[130,131,132,133,134],"minecraft_version":[54,58,59,36,60,93,94,101,102,62,37,40,73,74,38,78,79,80,81,82],"class_list":["post-81593","mod","type-mod","status-publish","has-post-thumbnail","hentry","mod_category-bukkit","mod_category-decoration","mod_category-folia","mod_category-library","mod_category-paper","mod_category-purpur","mod_category-social","mod_category-spigot","mod_category-technology","mod_category-utility","mod_loader-bukkit","mod_loader-folia","mod_loader-paper","mod_loader-purpur","mod_loader-spigot","minecraft_version-1-19","minecraft_version-1-19-4","minecraft_version-1-20","minecraft_version-1-20-1","minecraft_version-1-20-2","minecraft_version-1-20-3","minecraft_version-1-20-4","minecraft_version-1-20-5","minecraft_version-1-20-6","minecraft_version-1-21","minecraft_version-1-21-1","minecraft_version-1-21-10","minecraft_version-1-21-2","minecraft_version-1-21-3","minecraft_version-1-21-4","minecraft_version-1-21-5","minecraft_version-1-21-6","minecraft_version-1-21-7","minecraft_version-1-21-8","minecraft_version-1-21-9"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.6 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>HologramLib | Leaderboards &amp; Custom Holograms - Minecraft<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/vpesports.com\/minecraft\/mods\/hologramlib\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"HologramLib | Leaderboards &amp; Custom Holograms - Minecraft\" \/>\n<meta property=\"og:description\" content=\"Packet-based text display library with animations, leaderboards, emojis, minimessage, and more!\" \/>\n<meta property=\"og:url\" content=\"https:\/\/vpesports.com\/minecraft\/mods\/hologramlib\/\" \/>\n<meta property=\"og:site_name\" content=\"Minecraft\" \/>\n<meta property=\"og:image\" content=\"https:\/\/img.shields.io\/badge\/Source%20Code-c372ea\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data1\" content=\"2 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/hologramlib\\\/\",\"url\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/hologramlib\\\/\",\"name\":\"HologramLib | Leaderboards & Custom Holograms - Minecraft\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/hologramlib\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/hologramlib\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/wp-content\\\/uploads\\\/2026\\\/06\\\/hologramlib-icon-286a89f24baf5a916682ccb5a35200c11a7c92cf_96.webp\",\"datePublished\":\"2026-06-04T16:36:01+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/hologramlib\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/hologramlib\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/hologramlib\\\/#primaryimage\",\"url\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/wp-content\\\/uploads\\\/2026\\\/06\\\/hologramlib-icon-286a89f24baf5a916682ccb5a35200c11a7c92cf_96.webp\",\"contentUrl\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/wp-content\\\/uploads\\\/2026\\\/06\\\/hologramlib-icon-286a89f24baf5a916682ccb5a35200c11a7c92cf_96.webp\",\"width\":96,\"height\":96},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/hologramlib\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Mods\",\"item\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"HologramLib | Leaderboards &#038; Custom Holograms\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/#website\",\"url\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/\",\"name\":\"Minecraft\",\"description\":\"\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"HologramLib | Leaderboards & Custom Holograms - Minecraft","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/vpesports.com\/minecraft\/mods\/hologramlib\/","og_locale":"en_US","og_type":"article","og_title":"HologramLib | Leaderboards & Custom Holograms - Minecraft","og_description":"Packet-based text display library with animations, leaderboards, emojis, minimessage, and more!","og_url":"https:\/\/vpesports.com\/minecraft\/mods\/hologramlib\/","og_site_name":"Minecraft","og_image":[{"url":"https:\/\/img.shields.io\/badge\/Source%20Code-c372ea","type":"","width":"","height":""}],"twitter_card":"summary_large_image","twitter_misc":{"Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/vpesports.com\/minecraft\/mods\/hologramlib\/","url":"https:\/\/vpesports.com\/minecraft\/mods\/hologramlib\/","name":"HologramLib | Leaderboards & Custom Holograms - Minecraft","isPartOf":{"@id":"https:\/\/vpesports.com\/minecraft\/#website"},"primaryImageOfPage":{"@id":"https:\/\/vpesports.com\/minecraft\/mods\/hologramlib\/#primaryimage"},"image":{"@id":"https:\/\/vpesports.com\/minecraft\/mods\/hologramlib\/#primaryimage"},"thumbnailUrl":"https:\/\/vpesports.com\/minecraft\/wp-content\/uploads\/2026\/06\/hologramlib-icon-286a89f24baf5a916682ccb5a35200c11a7c92cf_96.webp","datePublished":"2026-06-04T16:36:01+00:00","breadcrumb":{"@id":"https:\/\/vpesports.com\/minecraft\/mods\/hologramlib\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/vpesports.com\/minecraft\/mods\/hologramlib\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/vpesports.com\/minecraft\/mods\/hologramlib\/#primaryimage","url":"https:\/\/vpesports.com\/minecraft\/wp-content\/uploads\/2026\/06\/hologramlib-icon-286a89f24baf5a916682ccb5a35200c11a7c92cf_96.webp","contentUrl":"https:\/\/vpesports.com\/minecraft\/wp-content\/uploads\/2026\/06\/hologramlib-icon-286a89f24baf5a916682ccb5a35200c11a7c92cf_96.webp","width":96,"height":96},{"@type":"BreadcrumbList","@id":"https:\/\/vpesports.com\/minecraft\/mods\/hologramlib\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/vpesports.com\/minecraft\/"},{"@type":"ListItem","position":2,"name":"Mods","item":"https:\/\/vpesports.com\/minecraft\/mods\/"},{"@type":"ListItem","position":3,"name":"HologramLib | Leaderboards &#038; Custom Holograms"}]},{"@type":"WebSite","@id":"https:\/\/vpesports.com\/minecraft\/#website","url":"https:\/\/vpesports.com\/minecraft\/","name":"Minecraft","description":"","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/vpesports.com\/minecraft\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"}]}},"_links":{"self":[{"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/mod\/81593","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/mod"}],"about":[{"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/types\/mod"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/media\/81594"}],"wp:attachment":[{"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/media?parent=81593"}],"wp:term":[{"taxonomy":"mod_category","embeddable":true,"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/mod_category?post=81593"},{"taxonomy":"mod_loader","embeddable":true,"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/mod_loader?post=81593"},{"taxonomy":"minecraft_version","embeddable":true,"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/minecraft_version?post=81593"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}