local OrionLib = loadstring(game:HttpGet(('https://[Log in to view URL]')))()
local Player = game.Players.LocalPlayer
local Window = OrionLib:MakeWindow({Name = "Key System", HidePremium = false, SaveConfig = true, Introtext = "Key System"})
OrionLib:MakeNotification({
Name = "Logged in!",
Content = "You are logged in as "..Player.Name.." ",
Image = "rbxassetid://4483345998",
Time = 5
})
_G.Key = "j0hny0999-abcd880"
_G.KeyInput = "string"
function MakeScriptHub()
print 'EnteredCorrectKey'
loadstring(game:HttpGet("https://[Log in to view URL]",true))()
end
function CorrectKeyNotification()
OrionLib:MakeNotification({
Name = "Correct Key!",
Content = "You have entered the correct key!",
Image = "rbxassetid://4483345998",
Time = 5
})
end
function IncorrectKeyNotification()
OrionLib:MakeNotification({
Name = "Incorrect Key!",
Content = "You have entered the incorrect key!",
Image = "rbxassetid://4483345998",
Time = 5
})
end
local Tab = Window:MakeTab({
Name = "Key",
Icon = "rbxassetid://4483345998",
PremiumOnly = false
})
Tab:AddTextbox({
Name = "Enter Key",
Default = "",
TextDisappear = true,
Callback = function(Value)
_G.KeyInput = Value
end
})
Tab:AddButton({
Name = "Check Key",
Callback = function()
if _G.KeyInput == _G.Key then
MakeScriptHub()
CorrectKeyNotification()
else
IncorrectKeyNotification()
end
end
})
Tab:AddButton({
Name = "Get Key",
Callback = function()
setclipboard("https://[Log in to view URL]")
end
})
To embed this project on your website, copy the following code and paste it into your website's HTML: