-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMain
35 lines (34 loc) · 1.15 KB
/
Main
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
local OrionLib = loadstring(game:HttpGet(('https://raw.githubusercontent.com/shlexware/Orion/main/source')))()
local Window = OrionLib:MakeWindow({Name = "Mar's Hub", HidePremium = false, SaveConfig = true, ConfigFolder = "Mar's Hub Configs."})
local Tab = Window:MakeTab({
Name = "Simple Scripts.",
Icon = "rbxassetid://4483345998",
PremiumOnly = false
})
local Section = Tab:AddSection({
Name = "List Of Simple Scripts.."
})
OrionLib:MakeNotification({
Name = "Loaded Mar's Hub",
Content = "Thanks For Using it!, Provided for For New Users!",
Image = "rbxassetid://4483345998",
Time = 5
})
Tab:AddButton({
Name = "Simple Spy V3",
Callback = function()
loadstring(game:HttpGetAsync("https://raw.githubusercontent.com/78n/SimpleSpy/main/SimpleSpySource.lua"))()
end
})
Tab:AddButton({
Name = "Simple Spy Beta",
Callback = function()
loadstring(game:HttpGetAsync("https://raw.githubusercontent.com/78n/SimpleSpy/main/SimpleSpyBeta.lua"))()
end
})
Tab:AddButton({
Name = "Infinite yield",
Callback = function()
loadstring(game:HttpGet("https://raw.githubusercontent.com/EdgeIY/infiniteyield/master/source"))()
end
})