Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- EZ Keys V0.3 – Small UI + Game Script Loader
- --[[
- WARNING: Heads up! This script has not been verified by ScriptBlox. Use at your own risk!
- ]]
- -- Key Configuration
- local key = "mcqtontop"
- local keylink = "https://link-center.net/1347205/grow-a-garden-script"
- local nameofthescript = "GROW A GARDEN DUPE"
- local whoisitmadeby = "JustUninstal"
- local thenoteofthekey = "Enter key to unlock script."
- -- Script Loader Function
- local function executeMainScript()
- repeat wait() until game:IsLoaded() and game.Players.LocalPlayer
- local scripts = {
- [126884695634066] = "https://raw.githubusercontent.com/NoLag-id/No-Lag-HUB/refs/heads/main/Garden/Garden-V1.lua",
- [81440632616906] = "https://raw.githubusercontent.com/NoLag-id/No-Lag-HUB/refs/heads/main/DigEarth/V1.lua",
- }
- local url = scripts[game.PlaceId]
- if url then
- loadstring(game:HttpGetAsync(url))()
- loadstring(game:HttpGetAsync("https://raw.githubusercontent.com/NoLag-id/No-Lag-HUB/refs/heads/main/untitled.lua"))()
- end
- end
- -- UI
- local ScreenGui = Instance.new("ScreenGui")
- local KeySystem = Instance.new("Frame")
- local KeyTextbox = Instance.new("TextBox")
- local CheckKeyBtn = Instance.new("TextButton")
- local CopyKeyBtn = Instance.new("TextButton")
- local Title = Instance.new("TextLabel")
- local ScriptName = Instance.new("TextLabel")
- local MadeBy = Instance.new("TextLabel")
- local Note = Instance.new("TextLabel")
- local UICorner = Instance.new("UICorner")
- ScreenGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
- ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
- KeySystem.Name = "KeySystem"
- KeySystem.Parent = ScreenGui
- KeySystem.BackgroundColor3 = Color3.fromRGB(35, 35, 35)
- KeySystem.Position = UDim2.new(0.4, 0, 0.4, 0)
- KeySystem.Size = UDim2.new(0.2, 0, 0.3, 0)
- KeySystem.Active = true
- KeySystem.Draggable = true
- UICorner.CornerRadius = UDim.new(0, 8)
- UICorner.Parent = KeySystem
- Title.Parent = KeySystem
- Title.BackgroundTransparency = 1
- Title.Size = UDim2.new(1, 0, 0.18, 0)
- Title.Font = Enum.Font.GothamBold
- Title.Text = "Key System"
- Title.TextColor3 = Color3.fromRGB(255, 255, 255)
- Title.TextScaled = true
- ScriptName.Parent = KeySystem
- ScriptName.BackgroundTransparency = 1
- ScriptName.Position = UDim2.new(0, 0, 0.2, 0)
- ScriptName.Size = UDim2.new(1, 0, 0.12, 0)
- ScriptName.Font = Enum.Font.Gotham
- ScriptName.Text = nameofthescript
- ScriptName.TextColor3 = Color3.fromRGB(255, 255, 255)
- ScriptName.TextScaled = true
- MadeBy.Parent = KeySystem
- MadeBy.BackgroundTransparency = 1
- MadeBy.Position = UDim2.new(0, 0, 0.32, 0)
- MadeBy.Size = UDim2.new(1, 0, 0.1, 0)
- MadeBy.Font = Enum.Font.Gotham
- MadeBy.Text = "By: " .. whoisitmadeby
- MadeBy.TextColor3 = Color3.fromRGB(255, 255, 255)
- MadeBy.TextScaled = true
- Note.Parent = KeySystem
- Note.BackgroundTransparency = 1
- Note.Position = UDim2.new(0, 0, 0.42, 0)
- Note.Size = UDim2.new(1, 0, 0.08, 0)
- Note.Font = Enum.Font.Gotham
- Note.Text = thenoteofthekey
- Note.TextColor3 = Color3.fromRGB(200, 200, 200)
- Note.TextScaled = true
- KeyTextbox.Name = "KeyTextbox"
- KeyTextbox.Parent = KeySystem
- KeyTextbox.BackgroundColor3 = Color3.fromRGB(50, 50, 50)
- KeyTextbox.Position = UDim2.new(0.08, 0, 0.52, 0)
- KeyTextbox.Size = UDim2.new(0.84, 0, 0.13, 0)
- KeyTextbox.Font = Enum.Font.Gotham
- KeyTextbox.Text = "Enter Key"
- KeyTextbox.TextColor3 = Color3.fromRGB(255, 255, 255)
- KeyTextbox.TextScaled = true
- KeyTextbox.ClearTextOnFocus = true
- Instance.new("UICorner", KeyTextbox).CornerRadius = UDim.new(0, 6)
- CheckKeyBtn.Name = "CheckKeyBtn"
- CheckKeyBtn.Parent = KeySystem
- CheckKeyBtn.BackgroundColor3 = Color3.fromRGB(65, 65, 65)
- CheckKeyBtn.Position = UDim2.new(0.08, 0, 0.68, 0)
- CheckKeyBtn.Size = UDim2.new(0.84, 0, 0.12, 0)
- CheckKeyBtn.Font = Enum.Font.GothamBold
- CheckKeyBtn.Text = "Check Key"
- CheckKeyBtn.TextColor3 = Color3.fromRGB(255, 255, 255)
- CheckKeyBtn.TextScaled = true
- Instance.new("UICorner", CheckKeyBtn).CornerRadius = UDim.new(0, 6)
- CopyKeyBtn.Name = "CopyKeyBtn"
- CopyKeyBtn.Parent = KeySystem
- CopyKeyBtn.BackgroundColor3 = Color3.fromRGB(65, 65, 65)
- CopyKeyBtn.Position = UDim2.new(0.08, 0, 0.83, 0)
- CopyKeyBtn.Size = UDim2.new(0.84, 0, 0.12, 0)
- CopyKeyBtn.Font = Enum.Font.GothamBold
- CopyKeyBtn.Text = "Copy Key Link"
- CopyKeyBtn.TextColor3 = Color3.fromRGB(255, 255, 255)
- CopyKeyBtn.TextScaled = true
- Instance.new("UICorner", CopyKeyBtn).CornerRadius = UDim.new(0, 6)
- -- Functionality
- CheckKeyBtn.MouseButton1Click:Connect(function()
- if KeyTextbox.Text == key then
- CheckKeyBtn.Text = "Correct!"
- wait(1)
- ScreenGui:Destroy()
- executeMainScript()
- else
- CheckKeyBtn.Text = "Wrong Key"
- wait(1)
- CheckKeyBtn.Text = "Check Key"
- end
- end)
- CopyKeyBtn.MouseButton1Click:Connect(function()
- setclipboard(keylink)
- ScriptName.Text = "Link Copied!"
- wait(2)
- ScriptName.Text = nameofthescript
- end)
Advertisement
Comments
-
User was banned
-
- Seraph-Scripts / Grow a garden dupe and pet spawner
- loadstring(game:HttpGet("https://raw.githubusercontent.com/VOXHOB/lynxhub/refs/heads/main/lynxhub-dupe.lua"))()
-
- loadstring(game:HttpGet("https://paste.ee/r/GbOa0LDH"))()
- NEW SCRIPT
- OTHER IS PATCHED
- MORE GUI'S
-
- loadstring(game:HttpGet("https://paste.ee/r/p6SUTYcF"))()
- NEW SCRIPTS OTHER PATCHED
Add Comment
Please, Sign In to add comment
Advertisement