Skip to content

SixZensED/Discord-Library

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

25 Commits
 
 
 
 
 
 

Repository files navigation

Update

All Update this Show here.

Add Functions
+ Line
+ Modal
+ KeyBind Toggle UI

Loadstring & Toggle UI

_G.Settings = {
	UI = {
		Key = Enum.KeyCode.RightControl,
	}
}

local Library = loadstring(game:HttpGet("https://raw.githubusercontent.com/SixZensED/Discord-Library/main/Library"))()

Create UI Library Window

local main = Library:create({
	Name = "Xova's Team"
})

Create Tab

local tab = main:createtab({
	Name = "Tab"
})

Create Section

local section = tab:createsection({
Name = "Section"
})

Create Page

local page = section:createpage()

Create Label

a = page:Label({
	Title = "Xova's Team",
})
-- Functions
-- a:Update("Xova's Team Best UI")

Create Button

page:Button({
	Title = "Refresh Label",
	Mode = "Defualt",
	AutoSize = true,
	callback = function()

	end,
  -- Theme Mode {"Defualt","Delete","Delete Fill"}
})

Create Toggle

page:Toggle({
	Title = "Toggle By Xova's Team",
	Default = true,
	callback = function(v)
		print(v)
	end,
})

Create SelectChoice

page:SelectChoice({
	Item = {"Dark","Sun"},
	Default = "Sun",
	callback = function(v)
		print(v)
	end,
})

Create Dropdown

b = page:Dropdown({
	Title = "Dropdown",
	Item = {1,2,3,4,5},
	Default = 1,
	callback = function(v)
		print(v)
	end,
})
-- Functions
-- b:Add(math.random(0,555))
-- b:Clear()

Create Slider

c = page:Slider({
	Title = "Slider",
	Min = 0,
	Max = 500,
	Default = 10,
	Dec = true,
	callback = function(v)
		print(v)
	end,
	
})
-- Functions
-- c:Update(50)

Create Line

page:Line()

Create Modal

page:Modal({
	Title = "Modal"
})

About

UI Library Roblox & Free to Use.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages