forked from bloodball/UI-Librarys
-
Notifications
You must be signed in to change notification settings - Fork 0
/
hyperion
64 lines (45 loc) · 1.49 KB
/
hyperion
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
--Made by : https://v3rmillion.net/member.php?action=profile&uid=1507931
local library = loadstring(game:HttpGet("https://hyphost.000webhostapp.com/Files/Public/HypUILibrary.lua"))()
local AimbotTab = library:CreateTab("Aimbot", "Locks onto a player's head.")
local VisualsTab = library:CreateTab("Visuals", "ESP, tracers, FOV, & more.")
AimbotTab:CreateSection("Aimbot")
AimbotTab:CreateCheckbox("Aimbot", function(Value)
return Value
end)
AimbotTab:CreateDropdown("Aim Type", {"Rage", "Legit"}, 2, function(Value)
return Value
end)
AimbotTab:CreateSection("FOV")
AimbotTab:CreateCheckbox("Show FOV", function(Value)
return Value
end)
AimbotTab:CreateCheckbox("Rainbow", function(Value)
return Value
end)
AimbotTab:CreateSection("Settings")
AimbotTab:CreateColorPicker("FOV Color", Color3.fromRGB(255, 255, 255), function(Value)
return Value
end)
AimbotTab:CreateSlider("FOV Size", 1, 250, 0, 0, function(Value)
return Value
end)
AimbotTab:CreateDropdown("Aim Part", {"Head", "Upper Torso"}, 2, function(Value)
return Value
end)
VisualsTab:CreateSection("ESP")
VisualsTab:CreateCheckbox("ESP", function(Value)
return Value
end)
VisualsTab:CreateCheckbox("Show Teams", function(Value)
return Value
end)
VisualsTab:CreateSection("Tracers")
VisualsTab:CreateCheckbox("Tracers", function(Value)
return Value
end)
VisualsTab:CreateSlider("Refresh Rate", 1, 100, 0, 0, function(Value)
return Value
end)
VisualsTab:CreateButton("Fix Visuals", function(Value)
return Value
end)