Compatibility
Minecraft: Java Edition
1.21.x
Platforms
Tags
Creators
Details
Licensed MIT
Published 2 days ago
CozyHolograms
Simple, performant, beautiful. CozyHolograms lets you create floating text displays with animations, placeholders and a clean API — no fluff, no lag.
Features
- 💬 Text Holograms — Multi-line floating text anywhere in your world
- 🎨 MiniMessage Support — Full color, gradient and formatting support
- 🔄 Animations — Frame-based text animations with configurable speed
- 📊 PlaceholderAPI — Live placeholder support in every hologram
- ⚡ Lightweight — Built on Display Entities (1.19.4+), no armor stands
- 🔌 Developer API — Create and manage holograms from your own plugin
- 💾 Persistent — Holograms survive server restarts
- 📏 Configurable — Scale, background color, text alignment, billboard mode
Requirements
| Dependency | Required |
|---|---|
| Paper 1.21+ | ✅ Yes |
| PlaceholderAPI | ❌ Optional |
Commands
| Command | Description | Permission |
|---|---|---|
/holo create <name> |
Create a hologram | cozyholo.create |
/holo delete <name> |
Delete a hologram | cozyholo.delete |
/holo edit <name> <line> <text> |
Edit a line | cozyholo.edit |
/holo list |
List all holograms | cozyholo.list |
/holo reload |
Reload all holograms | cozyholo.admin |
Developer API
CozyHologramsAPI api = CozyHologramsAPI.get();
Hologram holo = api.createHologram("myholo", location);
holo.addLine("&6Hello World!");
holo.addLine("&7Players online: {online}");
holo.setAnimated(true);


