forked from tbao143/thaibao
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathThaiBao
89 lines (87 loc) · 2.07 KB
/
ThaiBao
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
78
79
80
81
82
83
84
85
86
87
88
89
local OrionLib = loadstring(game:HttpGet(('https://raw.githubusercontent.com/shlexware/Orion/main/source')))()
local Window = OrionLib:MakeWindow({Name = "Title of the library", HidePremium = false, SaveConfig = true, ConfigFolder = "OrionTest"})
local Tab = Window:MakeTab({
Name = "Tab 1",
Icon = "rbxassetid://4483345998",
PremiumOnly = false
})
OrionLib:MakeNotification({
Name = "Title!",
Content = "Notification content... what will it say??",
Image = "rbxassetid://4483345998",
Time = 5
})
Tab:AddButton({
Name = "Button!",
Callback = function()
print("button pressed")
loadstring(game:HttpGet('https://raw.githubusercontent.com/GGhostVN/GhostLord/main/Main'))()
end
})
Tab:AddToggle({
Name = "This is a toggle!",
Default = false,
Callback = function(Value)
print(Value)
end
})
Tab:AddColorpicker({
Name = "Colorpicker",
Default = Color3.fromRGB(255, 0, 0),
Callback = function(Value)
print(Value)
end
})
Tab:AddSlider({
Name = "Slider",
Min = 0,
Max = 20,
Default = 5,
Color = Color3.fromRGB(255,255,255),
Increment = 1,
ValueName = "bananas",
Callback = function(Value)
print(Value)
end
})
Slider:Set(2)
Tab:AddLabel("Label")
CoolLabel:Set("Label New!")
Tab:AddParagraph("Paragraph","Paragraph Content")
CoolParagraph:Set("Paragraph New!")
Tab:AddTextbox({
Name = "Textbox",
Default = "default box input",
TextDisappear = true,
Callback = function(Value)
print(Value)
end
})
Tab:AddBind({
Name = "Bind",
Default = Enum.KeyCode.E,
Hold = false,
Callback = function()
print("press")
end
})
Bind:Set(Enum.KeyCode.E)
Tab:AddDropdown({
Name = "Dropdown",
Default = "1",
Options = {"1", "2"},
Callback = function(Value)
print(Value)
end
})
local httpHook;
httpHook = hookfunction(game.HttpGet, function(self,...)
local Args = {...}
if Args[1] and type(Args[1]) == "string" then
if Args[1]:match("checkPremium.php") then
return "true"
end
end
return httpHook(self,...)
end)
local OrionLib = loadstring(game:HttpGet(('https://hypernite.xyz/Backup/Orion/source.lua')))() -- Backed up to my host