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")