⚙ GETTING STARTED
Install GUIPlus and create your first GUI menu
- Download the latest
GUIPlus.jarfile - Place it in your server's
plugins/folder - Restart your server
Warning: Always use a full server restart when installing for the first time. Do not use
/reloadas it can cause issues with plugin initialization.
- The plugin will generate its default configuration files
After first startup, GUIPlus creates the following files and folders:
plugins/GUIPlus/
├── config.yml # Main plugin configuration
├── messages.yml # Customizable messages
├── playerData.yml # Persistent player data storage
├── cooldownData.yml # Cooldown tracking
└── CustomGuis/ # Your GUI configuration files
├── adminpanel.yml # Example admin panel GUI
└── bank.yml # Example banking GUI
GUIPlus comes with two example GUIs to get you started:
/gui open adminpanel
/gui open bank
Or use the built-in management menu:
/gui
The fastest way to create a GUI is through the in-game editor:
- Run
/guito open the GUI management menu - Click to create a new GUI
- Set the title, type, and number of rows
- Place items and configure click events visually
- Save your GUI with
/gui save
You can also create GUIs by writing YAML files directly. Create a new .yml file inside the plugins/GUIPlus/CustomGuis/ folder:
id: mygui
rows: 3
type: chest
title: §6My First GUI
commandAlias: mymenu
scenes:
'0':
delay: 0
items:
'1':
slot: 13
item: DIAMOND
amount: 1
item-name: §bHello World!
item-lore:
- ''
- §7This is my first GUIPlus menu!
- ''
- §eClick me!
item-flags: []
unbreakable: false
click-events:
message:
message: §aYou clicked the diamond!Then reload with /gui reload and open it with /gui open mygui or /mymenu.
- 🖼 Learn about the full GUI structure
- 🖱 Explore all click events
- ✅ Add logic with conditions
- 🔗 Use dynamic content with PlaceholderAPI
| ← Previous | Next → |
|---|---|
| Home | Commands & Permissions |