Want GUI Kits plugin

Hello, I’m looking for a GUI-based kits plugin, could you please tell me some?

Nucleus doesn’t have a “GUI” persay, but you can use Virtual Chest to call the commands of Nucleus if you wish.

Here is an example i whipped up should you want to give it a try.

virtualchest {
  TextTitle = "&b&l Kit List"
  Rows = 2
  Slot0 {
    Item {
      Count = 1
      ItemType = "minecraft:diamond_sword"
      UnsafeDamage = 0
      DisplayName = "&lWarriors Kit"
      ItemLore = [
        "Purchase a Warriors Kit for $50" //cost set in nucleus
      ]
    }
      PrimaryAction {
        Command = "kit warriorskit"
        KeepInventoryOpen = false
      }
      Requirements = "%economy_balance% >= 50"
    }
  Slot1 {
    Item {
      Count = 1
      ItemType = "minecraft:bread"
      UnsafeDamage = 0
      DisplayName = "&lFood Kit"
      ItemLore = [
        "Purchase a food kit for $5"
      ]
    }
      PrimaryAction {
        Command = "kit food"
        KeepInventoryOpen = false
      }
      Requirements = "%economy_balance% >= 5"
    }
  }

Thanks for your help