humarb

TestPVB

Sep 29th, 2025 (edited)
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.17 KB | None | 0 0
  1. -- loadstring(game:HttpGet("https://pastebin.com/raw/7xLFLfDV"))()
  2.  
  3. local ReplicatedStorage = game:GetService("ReplicatedStorage")
  4.  
  5. local BuyItem = ReplicatedStorage.Remotes.BuyItem
  6. local BuyGear = ReplicatedStorage.Remotes.BuyGear
  7.  
  8. local seeds = {
  9. "Cactus Seed",
  10. "Strawberry Seed",
  11. "Pumpkin Seed",
  12. "Sunflower Seed",
  13. "Dragon Fruit Seed",
  14. "Eggplant Seed",
  15. "Watermelon Seed",
  16. "Grape Seed",
  17. "Cocotank Seed",
  18. "Carnivorous Plant Seed",
  19. "Mr Carrot Seed",
  20. "Tomatrio Seed",
  21. "Shroombino Seed",
  22. "Mango Seed",
  23. "King Limone Seed",
  24. "Starfruit Seed"
  25. }
  26.  
  27. local gears = {
  28. "Water Bucket",
  29. "Frost Grenade",
  30. "Banana Gun",
  31. "Frost Blower",
  32. "Carrot Launcher"
  33. }
  34.  
  35. local buyAmount = 3
  36.  
  37. print("START BUY")
  38.  
  39. local EquipBest = ReplicatedStorage.Remotes.EquipBestBrainrots
  40.  
  41. while true do
  42. for num, val in pairs(seeds) do
  43. local i = 0
  44. for i = 1, buyAmount, 1 do
  45. BuyItem:FireServer(val)
  46. task.wait(1)
  47. end
  48. end
  49.  
  50. for num, val in pairs(gears) do
  51. local i = 0
  52. for i = 1, buyAmount, 1 do
  53. BuyGear:FireServer(val)
  54. task.wait(1)
  55. end
  56. end
  57.  
  58. task.wait(250)
  59. EquipBest:FireServer()
  60. end
Advertisement
Add Comment
Please, Sign In to add comment