-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.lua
More file actions
57 lines (47 loc) · 1.27 KB
/
main.lua
File metadata and controls
57 lines (47 loc) · 1.27 KB
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
local OrionLib = loadstring(game:HttpGet(('https://raw.githubusercontent.com/shlexware/Orion/main/source')))()
local Window = OrionLib:MakeWindow({Name = "Key System | 100% LOADED", HidePremium = false, SaveConfig = true, ConfigFolder = "OrionTest"})
--TABS
local Tab1 = Window:MakeTab({
Name = "Key System",
Icon = "rbxassetid://4483345998",
PremiumOnly = false
})
local Tab2 = Window:MakeTab({
Name = "Info",
Icon = "rbxassetid://4483345998",
PremiumOnly = false
})
--PARAGRAPHS
Tab1:AddParagraph("WARNING","If you do not know the key, you shouldnt becouse this is a private script!")
Tab2:AddParagraph("CREDITS","Made by s0shadow0BG1, known as TheShadowReturned!")
--Inputs
Tab1:AddTextbox({
Name = "Enter Key!",
Default = "",
TextDisappear = true,
Callback = function(Value)
_G.KeyInput = Value
end
})
--functions
function MakeScriptHub()
loadstring(game:HttpGet("https://raw.githubusercontent.com/shadow1234d/dsaaq2/main/script.lua"))()
end
_G.Key = "ILoveCats"
_G.KeyInput = "string"
--Buttons
Tab1:AddButton({
Name = "Check Key",
Callback = function()
if _G.KeyInput == _G.Key then
MakeScriptHub()
end
end
})
Tab2:AddButton({
Name = "Destroy Gui",
Callback = function()
OrionLib:Destroy();
end
})
OrionLib:Init()