Quickstart
Introduction
The Sheets plugin for Minecraft Java Edition provides an extensive toolkit for creating dynamic menus and interactive forms, enhancing player engagement and overall gameplay experience. This section will guide you through the installation and basic setup of the Sheets plugin, helping you create your first menu and utilize its features effectively.
Want to learn about writing menu from scratch? Head to the Basics section to learn more.
Installation
Prerequisites
Before installing the Sheets plugin, ensure you have the following:
Java version 21 installed
A Minecraft Java Edition server running a compatible version of Spigot [^1]1.21+.
Geyser installed (optional) if you plan to support cross-play with Bedrock Edition players.
PlaceholderAPI installed (optional) if you want to use placeholders
Vault and an economy plugin installed (optional) if you want to use economy
Installation Steps
Download the Plugin
Go to the BuiltByBit resource page and download the latest version of the Sheets plugin.
Add the Plugin to Your Server
Move the downloaded
.jarfile into thepluginsfolder of your Minecraft server directory.
Restart Your Server
Restart your server to enable the plugin. Check the server console for messages confirming that Sheets has been loaded successfully.
If you encounter any problem installing the plugin you can request support at our discord
Basic Configuration
Sheets doesn't require any configuration to work directly after installing. The only option in the configuration right now is debug.
You can add or configure menus in the plugins/Sheets/menus/ folder. You don't need to add the menu to a configuration; every file in the menus folder is loaded, no matter if it's in another folder inside like plugins/Sheets/menus/anotherfolder/.
Creating Your First Menu
There are two ways to create a menu: using a command or manually creating a YAML file.
Using Commands
Run the following command to create a new sheet using the default template:
This will create a new file at plugins/Sheets/menus/my_first_menu.yml and open it for you.
Manual Creation
Navigate to
plugins/Sheets/menus/.Create a new file named
hello_world.yml.Paste the following content:
Save the file and run
/sheets reload.Open your menu with
/sheets open hello_world.
Next Steps
Learn about more Commands to manage your menus.
Explore Actions to add functionality to your buttons.
Check out the Configuration to customize the plugin.
Learn how to use Requirements for button visibility.
Use Placeholders to create dynamic content.
Last updated