-
Notifications
You must be signed in to change notification settings - Fork 318
/
(Sexy) Coasting UI Lib
34 lines (25 loc) · 1.13 KB
/
(Sexy) Coasting UI Lib
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
--Coasting UI Lib by : https://v3rmillion.net/member.php?action=profile&uid=1393756
--Release thread here : https://v3rmillion.net/showthread.php?tid=1071849&pid=7590441
local CoastingLibrary = loadstring(game:HttpGet("https://pastebin.com/raw/3gQQtaKX"))()
local AimbotTab = CoastingLibrary:CreateTab("Aimbot")
local MainSection = AimbotTab:CreateSection("Main")
local ConfigSection = AimbotTab:CreateSection("Config")
MainSection:CreateButton("Click Me!", function()
print("Boo!")
end)
MainSection:CreateLabel("Namey", "Hello!")
MainSection:CreateToggle("Aimbot", function(boolean)
print("Aimbot:", boolean)
end)
MainSection:CreateSlider("Field Of View", 0, 150, 50, false, function(value)
print("Field of View: " .. value)
end)
ConfigSection:CreateColorPicker("Field of View Color", Color3.fromRGB(255, 255, 255), function(color)
print("Field Of View Color:", color)
end)
ConfigSection:CreateDropdown("Type", {"Mouse", "Character"}, 1, function(option)
print("Type: " .. option)
end)
ConfigSection:CreateKeybind("Aimbot Bind", Enum.KeyCode.Unknown, false, true, function(boolean)
print("Aimbot Active:", boolean)
end)