Logo
MINECRAFTBIBLE
Items
Items

All game items

Blocks
Blocks

Building blocks

Mobs
Mobs

Creatures & monsters

Biomes
Biomes

World biomes

Structures
Structures

Generated structures

Recipes
Recipes

Crafting guides

Advancements
Advancements

Achievements

Loot Tables
Loot Tables

Drop rates

Tags
Tags

Item groupings

All Versions
View all data →
Capes
Cape ArchiveNEW

Browse rare Minecon capes, OptiFine capes, and custom capes from players worldwide

Browse

Player Database
Player DatabasePopular

Search any player

Skin Browser
Skin Browser

Browse & download skins

Cape Gallery
Cape GalleryNEW

Minecon & OptiFine capes

Seed Vault
Seed Vault

Curated seeds

Learn

Guides
GuidesNew

Tutorials & tips

Blog
Blog

News & updates

Community

Community Hub
Community HubHub

Posts, discussions & more

All Versions
View community →
Seed Analyzer
Seed Analyzer

World seed analysis

Loot Explorer
Loot Explorer

Drop rates

Crafting Calculator
Crafting Calculator

Material planning

Enchant Calculator
Enchant Calculator

Probability math

Redstone Lab
Redstone Lab

Signal timing

Trading Profit
Trading Profit

Villager ROI

All Versions
View all tools →
Mods
Mods

Browse all mods

Plugins
Plugins

Server plugins

Resource Packs
Resource Packs

Textures & sounds

Shaders
Shaders

Visual enhancements

Datapacks
Datapacks

World logic

Scanner
Mod Intelligence

Scan & analyze any mod

All Versions
View all mods →
Loading...
IntroductionIntroductionVersion HistoryVersion HistoryGuidesGuidesBlog & NewsBlog & News
ItemsItemsBlocksBlocksMobsMobsRecipesRecipesBiomesBiomesStructuresStructuresAdvancementsAdvancementsLoot TablesLoot TablesTagsTags
ModsModsPluginsPluginsResource PacksResource PacksShadersShadersDatapacksDatapacks

MinecraftBible

The Ultimate Wiki

Logo
MINECRAFTBIBLE

The ultimate Minecraft reference. Every item, block, mob, and recipe documented with precision.

Community

  • Player Database
  • Skin Browser
  • Cape Gallery
  • Community Hub
  • Seed Vault

Database

  • Items
  • Blocks
  • Mobs
  • Recipes
  • Biomes
  • Structures

Tools

  • Seed Analyzer
  • Mod Intelligence
  • Crafting Calculator
  • Enchant Calculator

Mods & Packs

  • Mods
  • Plugins
  • Resource Packs
  • Shaders
  • Datapacks

© 2026 MinecraftBible. Not affiliated with Mojang or Microsoft.

PrivacyTermsContact
GameMenu
PluginMIT

GameMenu

A simple minecraft Server Menu plugin (like hypixel's skyblock have).

639
Downloads
5
Followers
4 months ago
Updated
📦
5
Versions
utilitybukkitpaperspigot
Download Latestv1.1.4View on Modrinth

📖About GameMenu

GameMenu

A simple Minecraft Server Menu plugin like Hypixel's Skyblock's "Skyblock Menu".

Fully customizable, you can customize this plugin by editing config.yml

Table of Contents

  • Introduction
  • Features
  • Installation
  • Configuration
  • Usage
  • Commands
  • Permissions
  • Contributing
  • License
  • Thankyou

Introduction

GameMenu is a lightweight and user-friendly plugin designed for Minecraft servers. It provides a customizable menu interface for server players, allowing easy navigation and access to server features and commands.

Features

  • Easy to install and configure.
  • Customizable menu items and commands.
  • [NOT AVAILABLE YET] [PREMIUM] Supports multiple menu pages.
  • User-friendly interface.
  • Lightweight and efficient.

Installation

To install the GameMenu plugin, follow these steps:

  1. Download the plugin: Download the latest version of the GameMenu plugin from here or here or here or maybe from here.

  2. Add the plugin to your server:

    • Place the downloaded JAR file into the plugins directory of your Minecraft server.

      [Note - This plugin will work on both spigot and paper server (may work on other also)]
  3. Start the server: Simply Start your Minecraft server to load the plugin.

  4. Verify installation: Once the server is started, verify that the plugin is loaded by running the command /plugins in the server console or in-game. You should see GameMenu listed among the loaded plugins.

Configuration

The GameMenu plugin comes with a default configuration file that can be customized to your liking. To configure the plugin:

  1. Navigate to the plugins/GameMenu directory.
  2. Open the config.yml file in a text editor.
  3. Modify the configuration options to suit your needs. Below is the default configuration:
#
# AUTHOR: Loghot (ItzLoghotXD)
# WIKI: https://github.com/ItzLoghotXD/GameMenu/wiki
# Copyright (c) ItzLoghotXD 2024-2024. All rights reserved.
#--------
# SERVER MENU ITEM
#   The custom item which is used for
#   server menu which is present in
#   player's hotbar
#--------
# SERVER MENU/GUI
#   The default gui which is opens when
#   player execute 'gm menu' command
#--------
# BUILT IN PLUGIN PLACEHOLDERS
#   %player% - Returns player name
#   %online% - Returns number of players online
#   %online_max% - Returns number of max player slots
#        *** USE PLACEHOLDERAPI TO GET MORE ***
#  (https://hangar.papermc.io/HelpChat/PlaceholderAPI)
#--------
# BUILT-IN FEATURES
#   You can use minecraft color codes
#   like '&a' for green you can find all
#   code here https://www.digminecraft.com/lists/color_list_pc.php

# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~#
# | SERVER MENU ITEM SETTINGS                |
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~#
server_menu_item:
  material: NETHER_STAR   # The material which is use for this custom item. (you can find all item names here
  # https://raw.githubusercontent.com/ItzLoghotXD/GameMenu/main/Materials.txt)
  display_name: '&aServer Menu &7(Right Click)'   # The display name of this item
  lore:   # Lore(s) of this item
    - '&7This will open a GUI.'
    - '&7You can see items there'
    - '&7and interact with them!'
    - '&7edit this in config.yml'
    - ''
    - '&eClick to open'

# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~#
# | SERVER MENU/GUI SETTINGS                 |
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~#
menu:
  slots: 9   # Total number of slots in the gui (if you enter any number which is not divisible by 9
  # it will auto adjust it. minimum valid number is 9 and maximum is 54)
  title: '&6Server Menu'   # The title of this menu
  items:   # You can set items here which will be in the menu
    # Some example items
    Report_Island_Name:
      material: DIAMOND_BLOCK   # The material which will be displayed in the menu for this item
      slot: 0   # The number of slot in which the item will be (starts from index 0)
      amount: 1   # The Amount of items in a slot
      glow: false   # Whether the item glow or not
      display_name: '&aDIAMONDS'   # The display name of this item
      lore:   # Lore(s) of this item
        - '&7Give you some Diamonds!'
        - '&7This is just for example'
        - '&7change this in config'
        - ''
        - '&eClick to get!'
      commands:   # The list of commands which will be executed when the player will right/left click on it
        # (It has a built-in command 'CLOSE' which will close the menu and if you put 'CONSOLE: ' in before
        # any command it will execute it as console else player)
        - 'CONSOLE: give %player% diamond'
    Crafting_Table:
      material: CRAFTING_TABLE
      slot: 4
      amount: 1
      glow: true
      display_name: '&aCrafting Table'
      lore:
        - '&7Opens the Crafting Grid.'
        - ''
        - '&7(Will not actually open a'
        - '&7crafting grid, just for'
        - '&7example) edit in config'
        - ''
        - '&eClick to open!'
      commands:
        - 'CONSOLE: say edit the config.yml file in the plugin/GameMenu folder'
        - 'CONSOLE: say Visit me at paper hangar: https://hangar.papermc.io/ItzLoghotXD/GameMenu'
        - 'CONSOLE: say Visit me at modrinth: https://modrinth.com/plugin/game-menu'
        - 'CONSOLE: say Visit me at spigot: https://www.spigotmc.org/resources/gamemenu.122426'
        - 'CONSOLE: say or found any issue then report it here: https://github.com/ItzLoghotXD/GameMenu/issues'
    CLOSE:
      material: BARRIER
      slot: 8
      display_name: '&4Close'
      commands:
        - 'CLOSE'

Save the changes and reload the plugin by typing /gamemenu reload in the console to apply the new configuration.

Usage

Once the GameMenu plugin is installed and configured, all players can use the menu by executing the command /gamemenu menu in-game or by right-clicking when they are holding the custom server_menu_item. This will open the server menu with the configured items.

Commands

The GameMenu plugin provides the following commands:

  • /gamemenu - The default command.
    • aliases - /gm
    • usage - /gamemenu <subcommand>
  • /gamemenu help - Shows the usage of every command.
  • gamemenu menu - Opens the Main menu.
  • gamemenu reload - Reloads the plugin

Permissions

The GameMenu plugin uses the following permissions:

  • gamemenu.command.gm - Allows a player to use the default command.
  • gamemenu.command.help - Allows a player to use the help subcommand.
  • gamemenu.command.menu - Allows a player to open the Main menu
  • gamemenu.command.reload - Allows a player to reload the plugin.

Contributing

Contributions to the GameMenu plugin are welcome! If you would like to contribute, please follow these steps:

  1. Fork the repository.
  2. Create a new branch for your feature or bug fix.
  3. Make your changes and commit them with descriptive messages.
  4. Push your changes to your forked repository.
  5. Create a pull request to the main repository.

Please ensure that your code follows the project's coding standards and includes appropriate tests.

License

This project is licensed under the MIT License. See the LICENSE file for more information.

👥 Team & Contributors

No authors recorded.

⚙️ Compatibility

Environment
🖥️ Server-side
Loaders
bukkitpaperspigot
Minecraft Versions
1.161.16.11.16.21.16.31.16.41.16.51.171.17.1+26 more

🔗 Links

Modrinth Page