Utopia.Voyage UI Docs

Getting Started

This documentation covers the Utopia.Voyage UI library. To use it, simply require the module and create a window:

local Window = require(path.to.window)
local myWindow = Window.new(Vector2.new(600, 400))

Create Window

Creates a draggable UI window with glow and tabs.

local myWindow = Window.new(Vector2.new(600, 400))

Create Tab

Add a new tab using the Creation method.

local tab1 = myWindow:Creation("TAB NAME HERE")

Create Button

Create a button inside a tab with optional font customization:

tab1:CreateButton({
    Name = "utopia.voyage On Top!",
    Font = "GothamBold", -- must be a valid Enum.Font name as a string
    Callback = function()
    	print("Use Utopia.Voyage, The Best Ui Library")
    end,
})
})