-
Notifications
You must be signed in to change notification settings - Fork 319
/
Kronos
66 lines (53 loc) · 1.13 KB
/
Kronos
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
local library = loadstring(game:HttpGet("https://raw.githubusercontent.com/bloodball/-back-ups-for-libs/main/Kronos"))()
local window = library:Window({
Title = "KronosLib - By LeadMarker#1219",
Accent = Color3.fromRGB(69,69,207),
Logo = 3610245066,
ToggleKey = Enum.KeyCode.LeftAlt
})
local tab = window:NewTab({
Logo = 4483345998
})
local tabsection = tab:TabSection({
Title = "TabSection"
})
local column = tabsection:AddColumn({
Title = "Column"
})
local section = column:Section({
Title = "Section"
})
section:Button({
Text = "Button",
Callback = function() end
})
section:Toggle({
Text = "Toggle",
State = false,
Callback = function() end
})
section:TextLabel({
Text = "Textlabel"
})
section:Divide({})
section:Keybind({
Text = "Keybind",
Key = Enum.KeyCode.F,
Callback = function() end
})
section:Textbox({
Text = "Textbox",
Callback = function() end
})
section:Dropdown({
Text = "Dropdown",
List = {'option1', 'option2', 'option3'},
Callback = function() end
})
section:Slider({
Text = "Slider",
Min = 0,
Max = 100,
Def = 50,
Callback = function() end
})