-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathUni-fall.luaU
More file actions
77 lines (59 loc) · 2.66 KB
/
Uni-fall.luaU
File metadata and controls
77 lines (59 loc) · 2.66 KB
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
67
68
69
70
71
72
73
74
75
76
77
local version = 0.1
local repo = 'https://raw.githubusercontent.com/wally-rblx/LinoriaLib/main/'
local Library = loadstring(game:HttpGet(repo .. 'Library.lua'))()
local ThemeManager = loadstring(game:HttpGet(repo .. 'addons/ThemeManager.lua'))()
local NotificationHolder = loadstring(game:HttpGet("https://raw.githubusercontent.com/BocusLuke/UI/main/STX/Module.Lua"))()
local Notification = loadstring(game:HttpGet("https://raw.githubusercontent.com/BocusLuke/UI/main/STX/Client.Lua"))()
local function notif(title, des, time)
Notification:Notify(
{Title = title, Description = des},
{OutlineColor = Color3.fromRGB(0, 255, 139),Time = time, Type = "default"}
)
end
local function nwarn(why, solve)
Notification:Notify(
{Title = why, Description = solve},
{OutlineColor = Color3.fromRGB(0, 255, 139),Time = 5, Type = "image"},
{Image = "http://www.roblox.com/asset/?id=6023426923", ImageColor = Color3.fromRGB(255, 166, 0)}
)
end
local function nerror(why)
Notification:Notify(
{Title = "ERROR", Description = why},
{OutlineColor = Color3.fromRGB(0, 255, 139),Time = 5, Type = "image"},
{Image = "http://www.roblox.com/asset/?id=6023426923", ImageColor = Color3.fromRGB(255, 0, 0)}
)
end
local Window = Library:CreateWindow({
-- Set Center to true if you want the menu to appear in the center
-- Set AutoShow to true if you want the menu to appear when it is created
-- Position and Size are also valid options here
-- but you do not need to define them unless you are changing them :)
Title = 'Uni-Fall | '.. version,
Center = true,
AutoShow = true,
})
local Tabs = {
-- Creates a new tab titled Main
creditsTAB = Window:AddTab('Credits'),
antiCheattab = Window:AddTab('AntiCheats'),
['UI Settings'] = Window:AddTab('UI Settings'),
}
local creatorsbox = Tabs.creditsTAB:AddLeftGroupbox('Creators')
creatorsbox:AddButton('GS_StarGamer - Modules')
creatorsbox:AddButton('wally-rblx - UI')
local linksbox = Tabs.creditsTAB:AddRightGroupbox('Links')
linksbox:AddButton('Discord server', function()
setclipboard('https://discord.gg/tbENWKpgku')
notif('Copied', 'Discord server copied if not here is the link: https://discord.gg/tbENWKpgku', 10)
end)
local utils = Tabs.creditsTAB:AddLeftGroupbox('Utils')
local infinitybox = Tabs.creditsTAB:AddLeftGroupbox('Infinity')
local MenuGroup = Tabs['UI Settings']:AddLeftGroupbox('Menu')
Library:SetWatermarkVisibility(false)
MenuGroup:AddButton('Unload', function() Library:Unload() end)
Library:SetWatermarkVisibility(false)
ThemeManager:SetLibrary(Library)
ThemeManager:SetFolder('FallAngelHub')
ThemeManager:ApplyToTab(Tabs['UI Settings'])
ThemeManager:ApplyTheme('Green')