Advertisement
satyajitsrichandan

🌸 No Lag Hub GUI (Candy Blossom)

Jun 24th, 2025
37
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.41 KB | None | 0 0
  1. -- 🌸 Grow a Garden - No Lag Hub GUI (Candy Blossom Event)
  2. -- Optimized GUI for event farming, auto collect + teleport
  3.  
  4. local rs = game:GetService("ReplicatedStorage")
  5. local player = game.Players.LocalPlayer
  6. local candyFolder = workspace:WaitForChild("EventCandyDrops")
  7.  
  8. -- UI
  9. local gui = Instance.new("ScreenGui", player.PlayerGui)
  10. local frame = Instance.new("Frame", gui)
  11. frame.Size = UDim2.new(0, 200, 0, 140)
  12. frame.Position = UDim2.new(0, 20, 0, 90)
  13. frame.BackgroundColor3 = Color3.fromRGB(30, 30, 30)
  14.  
  15. -- Buttons
  16. local function makeBtn(text, yPos, func)
  17. local btn = Instance.new("TextButton", frame)
  18. btn.Size = UDim2.new(0, 180, 0, 30)
  19. btn.Position = UDim2.new(0, 10, 0, yPos)
  20. btn.Text = text
  21. btn.BackgroundColor3 = Color3.fromRGB(70, 130, 180)
  22. btn.TextColor3 = Color3.new(1, 1, 1)
  23. btn.MouseButton1Click:Connect(func)
  24. end
  25.  
  26. -- Actions
  27. makeBtn("Collect Candy", 0.05, function()
  28. for _, candy in pairs(candyFolder:GetChildren()) do
  29. if candy:IsA("BasePart") then
  30. candy.CFrame = player.Character.HumanoidRootPart.CFrame
  31. wait(0.1)
  32. end
  33. end
  34. end)
  35.  
  36. makeBtn("Teleport to Candy", 0.35, function()
  37. for _, candy in pairs(candyFolder:GetChildren()) do
  38. if candy:IsA("BasePart") then
  39. player.Character:MoveTo(candy.Position)
  40. wait(0.5)
  41. end
  42. end
  43. end)
  44.  
  45. print("✅ No Lag Candy GUI Loaded.")
  46.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement