About UIButtons
UIButtons is a Rust plugin that adds customizable UI buttons to your server. Players can click these buttons to execute commands like /shop, /kit, and more. The buttons are fully configurable through the UIButtons.json file, where you can set button text, commands, and button colors.
Features:
* Custom Buttons: Easily add buttons with text and commands.
* Color Customization: Set button color using RGBA format.
* Automatic UI: UI displays automatically when players join.
* Configurable: Modify button settings via a simple config file.
Example Configuration:
{
"IsUIVisible": true,
"ButtonColor": "0.3568628 0.3568628 0.345098 0.4705882",
"Buttons": [
{ "Text": "Shop", "Command": "chat.say /shop" },
{ "Text": "Vehicle", "Command": "chat.say /menu_vehicle" },
{ "Text": "Kits", "Command": "chat.say /kit" },
{ "Text": "Credits", "Command": "chat.say /credits" },
{ "Text": "Copter", "Command": "chat.say /cb copter" },
{ "Text": "Remove", "Command": "chat.say /remove" }
]
}