Create a new window and tabs
local Window = Library:CreateWindow({
Title = 'Example menu',
Center = true, -- Set Center to true if you want the menu to appear in the center
AutoShow = true, -- Set AutoShow to true if you want the menu to appear when it is created
TabPadding = 8,
MenuFadeTime = 0.2
--Position = float (optional)
--Size = float (optional)
})local mainTab = Window:AddTab('Main')Last updated