Linoria Modded

wtf

Getting Started

local repo = 'https://raw.githubusercontent.com/wally-rblx/LinoriaLib/main/'
local Library = loadstring(game:HttpGet("https://raw.githubusercontent.com/NatsuDevs/Linoria-Rewrite-Modded-/main/Lib.lua"))()
local ThemeManager = loadstring(game:HttpGet(repo .. 'addons/ThemeManager.lua'))()
local SaveManager = loadstring(game:HttpGet(repo .. 'addons/SaveManager.lua'))()

Creating Window

local Window = Library:CreateWindow({
    Title = 'Your Window Name Goes Here',
    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
})

Creating Tab

local Tabs = {
    Main = Window:AddTab('Example'), -- If you want to Create more tab, just copy this then change Name
    ['UI Settings'] = Window:AddTab('Settings'), -- This is settings tab, you can delete this if you want
}

Creating Some Group Box

Creating Toggles

Creating Button, Sub Button

You can add Tooltip on a button too!

Creating Label

Creating Slider

Last updated