forked from bloodball/UI-Librarys
-
Notifications
You must be signed in to change notification settings - Fork 0
/
wizard
29 lines (21 loc) · 775 Bytes
/
wizard
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
local Library = loadstring(Game:HttpGet("https://raw.githubusercontent.com/bloodball/-back-ups-for-libs/main/wizard"))()
local PhantomForcesWindow = Library:NewWindow("Combat")
local KillingCheats = PhantomForcesWindow:NewSection("Kill Options")
KillingCheats:CreateButton("Button", function()
print("HI")
end)
KillingCheats:CreateTextbox("TextBox", function(text)
print(text)
end)
KillingCheats:CreateToggle("Auto Ez", function(value)
print(value)
end)
KillingCheats:CreateDropdown("DropDown", {"Hello", "World", "Hello World"}, 2, function(text)
print(text)
end)
KillingCheats:CreateSlider("Slider", 0, 100, 15, false, function(value)
print(value)
end)
KillingCheats:CreateColorPicker("Picker", Color3.new(255, 255, 255), function(value)
print(value)
end)