Advertisement
mickyqq1

grow a garden MAIN

May 7th, 2025
14,778
-1
Never
4
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.77 KB | None | 0 1
  1. -- EZ Keys V0.3 – Small UI + Game Script Loader
  2. --[[
  3. WARNING: Heads up! This script has not been verified by ScriptBlox. Use at your own risk!
  4. ]]
  5.  
  6. -- Key Configuration
  7. local key = "mcqtontop"
  8. local keylink = "https://link-center.net/1347205/grow-a-garden-script"
  9. local nameofthescript = "GROW A GARDEN DUPE"
  10. local whoisitmadeby = "JustUninstal"
  11. local thenoteofthekey = "Enter key to unlock script."
  12.  
  13. -- Script Loader Function
  14. local function executeMainScript()
  15. repeat wait() until game:IsLoaded() and game.Players.LocalPlayer
  16. local scripts = {
  17. [126884695634066] = "https://raw.githubusercontent.com/NoLag-id/No-Lag-HUB/refs/heads/main/Garden/Garden-V1.lua",
  18. [81440632616906] = "https://raw.githubusercontent.com/NoLag-id/No-Lag-HUB/refs/heads/main/DigEarth/V1.lua",
  19. }
  20. local url = scripts[game.PlaceId]
  21. if url then
  22. loadstring(game:HttpGetAsync(url))()
  23. loadstring(game:HttpGetAsync("https://raw.githubusercontent.com/NoLag-id/No-Lag-HUB/refs/heads/main/untitled.lua"))()
  24. end
  25. end
  26.  
  27. -- UI
  28. local ScreenGui = Instance.new("ScreenGui")
  29. local KeySystem = Instance.new("Frame")
  30. local KeyTextbox = Instance.new("TextBox")
  31. local CheckKeyBtn = Instance.new("TextButton")
  32. local CopyKeyBtn = Instance.new("TextButton")
  33. local Title = Instance.new("TextLabel")
  34. local ScriptName = Instance.new("TextLabel")
  35. local MadeBy = Instance.new("TextLabel")
  36. local Note = Instance.new("TextLabel")
  37. local UICorner = Instance.new("UICorner")
  38.  
  39. ScreenGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  40. ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  41.  
  42. KeySystem.Name = "KeySystem"
  43. KeySystem.Parent = ScreenGui
  44. KeySystem.BackgroundColor3 = Color3.fromRGB(35, 35, 35)
  45. KeySystem.Position = UDim2.new(0.4, 0, 0.4, 0)
  46. KeySystem.Size = UDim2.new(0.2, 0, 0.3, 0)
  47. KeySystem.Active = true
  48. KeySystem.Draggable = true
  49.  
  50. UICorner.CornerRadius = UDim.new(0, 8)
  51. UICorner.Parent = KeySystem
  52.  
  53. Title.Parent = KeySystem
  54. Title.BackgroundTransparency = 1
  55. Title.Size = UDim2.new(1, 0, 0.18, 0)
  56. Title.Font = Enum.Font.GothamBold
  57. Title.Text = "Key System"
  58. Title.TextColor3 = Color3.fromRGB(255, 255, 255)
  59. Title.TextScaled = true
  60.  
  61. ScriptName.Parent = KeySystem
  62. ScriptName.BackgroundTransparency = 1
  63. ScriptName.Position = UDim2.new(0, 0, 0.2, 0)
  64. ScriptName.Size = UDim2.new(1, 0, 0.12, 0)
  65. ScriptName.Font = Enum.Font.Gotham
  66. ScriptName.Text = nameofthescript
  67. ScriptName.TextColor3 = Color3.fromRGB(255, 255, 255)
  68. ScriptName.TextScaled = true
  69.  
  70. MadeBy.Parent = KeySystem
  71. MadeBy.BackgroundTransparency = 1
  72. MadeBy.Position = UDim2.new(0, 0, 0.32, 0)
  73. MadeBy.Size = UDim2.new(1, 0, 0.1, 0)
  74. MadeBy.Font = Enum.Font.Gotham
  75. MadeBy.Text = "By: " .. whoisitmadeby
  76. MadeBy.TextColor3 = Color3.fromRGB(255, 255, 255)
  77. MadeBy.TextScaled = true
  78.  
  79. Note.Parent = KeySystem
  80. Note.BackgroundTransparency = 1
  81. Note.Position = UDim2.new(0, 0, 0.42, 0)
  82. Note.Size = UDim2.new(1, 0, 0.08, 0)
  83. Note.Font = Enum.Font.Gotham
  84. Note.Text = thenoteofthekey
  85. Note.TextColor3 = Color3.fromRGB(200, 200, 200)
  86. Note.TextScaled = true
  87.  
  88. KeyTextbox.Name = "KeyTextbox"
  89. KeyTextbox.Parent = KeySystem
  90. KeyTextbox.BackgroundColor3 = Color3.fromRGB(50, 50, 50)
  91. KeyTextbox.Position = UDim2.new(0.08, 0, 0.52, 0)
  92. KeyTextbox.Size = UDim2.new(0.84, 0, 0.13, 0)
  93. KeyTextbox.Font = Enum.Font.Gotham
  94. KeyTextbox.Text = "Enter Key"
  95. KeyTextbox.TextColor3 = Color3.fromRGB(255, 255, 255)
  96. KeyTextbox.TextScaled = true
  97. KeyTextbox.ClearTextOnFocus = true
  98. Instance.new("UICorner", KeyTextbox).CornerRadius = UDim.new(0, 6)
  99.  
  100. CheckKeyBtn.Name = "CheckKeyBtn"
  101. CheckKeyBtn.Parent = KeySystem
  102. CheckKeyBtn.BackgroundColor3 = Color3.fromRGB(65, 65, 65)
  103. CheckKeyBtn.Position = UDim2.new(0.08, 0, 0.68, 0)
  104. CheckKeyBtn.Size = UDim2.new(0.84, 0, 0.12, 0)
  105. CheckKeyBtn.Font = Enum.Font.GothamBold
  106. CheckKeyBtn.Text = "Check Key"
  107. CheckKeyBtn.TextColor3 = Color3.fromRGB(255, 255, 255)
  108. CheckKeyBtn.TextScaled = true
  109. Instance.new("UICorner", CheckKeyBtn).CornerRadius = UDim.new(0, 6)
  110.  
  111. CopyKeyBtn.Name = "CopyKeyBtn"
  112. CopyKeyBtn.Parent = KeySystem
  113. CopyKeyBtn.BackgroundColor3 = Color3.fromRGB(65, 65, 65)
  114. CopyKeyBtn.Position = UDim2.new(0.08, 0, 0.83, 0)
  115. CopyKeyBtn.Size = UDim2.new(0.84, 0, 0.12, 0)
  116. CopyKeyBtn.Font = Enum.Font.GothamBold
  117. CopyKeyBtn.Text = "Copy Key Link"
  118. CopyKeyBtn.TextColor3 = Color3.fromRGB(255, 255, 255)
  119. CopyKeyBtn.TextScaled = true
  120. Instance.new("UICorner", CopyKeyBtn).CornerRadius = UDim.new(0, 6)
  121.  
  122. -- Functionality
  123. CheckKeyBtn.MouseButton1Click:Connect(function()
  124. if KeyTextbox.Text == key then
  125. CheckKeyBtn.Text = "Correct!"
  126. wait(1)
  127. ScreenGui:Destroy()
  128. executeMainScript()
  129. else
  130. CheckKeyBtn.Text = "Wrong Key"
  131. wait(1)
  132. CheckKeyBtn.Text = "Check Key"
  133. end
  134. end)
  135.  
  136. CopyKeyBtn.MouseButton1Click:Connect(function()
  137. setclipboard(keylink)
  138. ScriptName.Text = "Link Copied!"
  139. wait(2)
  140. ScriptName.Text = nameofthescript
  141. end)
  142.  
Advertisement
Comments
  • User was banned
  • Ser4ph_
    11 days
    # text 0.16 KB | 0 0
    1. Seraph-Scripts / Grow a garden dupe and pet spawner
    2. loadstring(game:HttpGet("https://raw.githubusercontent.com/VOXHOB/lynxhub/refs/heads/main/lynxhub-dupe.lua"))()
  • menikid673
    5 days
    # text 0.10 KB | 0 0
    1. loadstring(game:HttpGet("https://paste.ee/r/GbOa0LDH"))()
    2. NEW SCRIPT
    3. OTHER IS PATCHED
    4. MORE GUI'S
  • menikid673
    4 days
    # text 0.08 KB | 0 0
    1. loadstring(game:HttpGet("https://paste.ee/r/p6SUTYcF"))()
    2. NEW SCRIPTS OTHER PATCHED
Add Comment
Please, Sign In to add comment
Advertisement