local Library = loadstring(game:HttpGet("https://raw.githubusercontent.com/amorestar/raceclickerroblox/refs/heads/main/raceclickergui.lua"))()
local Window = Library:Window({
Title = "YOUR TITLE - KEY SYSTEM",
Desc = "Powered by amorestar",
Icon = 105059922903197,
Theme = "Dark",
Config = {
Keybind = Enum.KeyCode.LeftControl,
Size = UDim2.new(0, 500, 0, 150)
},
CloseUIButton = {
Enabled = true,
Text = "KEY CHECK"
}
})
local key = "EXAMPLE_KEY_12345" -- Replace with your actual key
local function UnloadEverything()
wait(2)
for _, gui in ipairs(game.CoreGui:GetChildren()) do
if gui:IsA("ScreenGui") and (
gui.Name:lower():find("library") or
gui.Name:lower():find("key")
) then
gui:Destroy()
end
end
pcall(function() Library:Close() end)
end
local Tab = Window:Tab({Title = "Key checking", Icon = "wrench"}) do
Tab:Section({Title = "You need to enter key to continue"})
Tab:Textbox({
Title = "Enter a key",
Placeholder = "Key from discord",
ClearTextOnFocus = false,
Callback = function(text)
if text == key then
Window:Notify({
Title = "☄️ Key system",
Desc = "Successfully entered the key!\nLoading script...",
Time = 4.5
})
task.delay(0.1, UnloadEverything)
wait(3)
loadstring(game:HttpGet("YOUR SCRIPT"))() -- your actual script URL
else
Window:Notify({
Title = "☄️ Key system",
Desc = "Invalid key! Please try again.",
Time = 3
})
end
end
})
end
Comments
goated key system script 💜
Password Needed