-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathKeySystem.lua
More file actions
24 lines (22 loc) · 975 Bytes
/
KeySystem.lua
File metadata and controls
24 lines (22 loc) · 975 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
local KeySystem = loadstring(game:HttpGet("https://raw.githubusercontent.com/OopssSorry/LuaU-Free-Key-System-UI/main/source.lua"))()
local KeyValid = false
local response = KeySystem:Init({
Debug=false, -- <bool> Prints some output in console when true
Title="CDTStorm bêta", -- <string or nil> Title of key system
Description=nil, -- <string or nil> Description of key system
Discord="https://discord.gg/wS5JgH3dV6", -- <string or nil> Button to join your discord server
SaveKey=false, -- <bool or nil> Just auto save key
Verify=function(key) -- <function> Verify is key valid
if key=="1234" or key=="AdminShaw" then
KeyValid=true
return true
else
return false
end
end,
GuiParent = game.CoreGui, -- <object or nil> :3
})
if not response or not KeyValid then return end
if KeyValid then
local Lib = loadstring(game:HttpGet("https://raw.githubusercontent.com/zuqorl/CDStorm/refs/heads/main/UiTemplate.lua"))()
end