Kallos is a Lua-based UI library designed exclusively for Vision Hub V3. It provides a modular and customizable framework to create a stunning and functional user interface for the script hub. The library includes built-in components like labels, toggles, sliders, keybinds, text inputs, and dropdown menus.
This library is still a work in progress.
- Ease of Use: Simple API to create and manage UI elements.
- Customizable: All UI components are fully customizable.
- Responsive: Automatically scales to different screen sizes.
- Modular Design: Add or remove components as needed.
To get started, load the library using the loadstring below:
local kallos = loadstring(game:HttpGet("https://raw.githubusercontent.com/Vision-Software-LLC/Kallos-V2/refs/heads/main/source.min.lua"))()Here's a simple example demonstrating how to create a menu with a tab and a toggle:
local kallos = loadstring(game:HttpGet("https://raw.githubusercontent.com/Vision-Software-LLC/Kallos-V2/refs/heads/main/source.min.lua"))()
-- Create the main menu
local menu = kallos:New("Example Menu")
-- Add a tab
local exampleTab = menu:CreateTab("Example Tab", "rbxassetid://123456789")
-- Add a toggle to the tab
exampleTab:CreateToggle("Example Toggle", "This is a toggle example", false, function(state)
print("Toggle State: ", state)
end)For detailed setup instructions and examples, refer to the Documentation.