forked from bloodball/UI-Librarys
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Healy UI
56 lines (41 loc) · 1.04 KB
/
Healy UI
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
--Made by : https://v3rmillion.net/member.php?action=profile&uid=1236949
local Lib = loadstring(game:HttpGet("http://www.narwhalhacks.xyz/UI/HealyUILib.lua", true))()
local Window = Lib:Window("HI")
local Window2 = Lib:Window("HI2")
local Window3 = Lib:Window("HI3", Color3.fromRGB(255, 0, 0))
Window:Button("HI", function()
print("HI")
end)
Window:Toggle("BYE", function(state)
print(state)
end)
Window:Dropdown("SUP", {"1", "2", "3"}, function(option)
print(option)
end)
Window:Button("HI", function()
print("HI")
end)
Window:Toggle("BYE", function(state)
print(state)
end)
Window:Dropdown("SUP", {"1", "2", "3"}, function(option)
print(option)
end)
Window2:Button("HI", function()
print("HI")
end)
Window2:Toggle("BYE", function(state)
print(state)
end)
Window:Dropdown("SUP", {"1", "2", "3"}, function(option)
print(option)
end)
Window3:Button("HI", function()
print("HI")
end)
Window2:Toggle("BYE", function(state)
print(state)
end)
Window:Dropdown("SUP", {"1", "2", "3"}, function(option)
print(option)
end)