Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- loadstring(game:HttpGet("https://pastebin.com/raw/7xLFLfDV"))()
- local ReplicatedStorage = game:GetService("ReplicatedStorage")
- local BuyItem = ReplicatedStorage.Remotes.BuyItem
- local BuyGear = ReplicatedStorage.Remotes.BuyGear
- local seeds = {
- "Cactus Seed",
- "Strawberry Seed",
- "Pumpkin Seed",
- "Sunflower Seed",
- "Dragon Fruit Seed",
- "Eggplant Seed",
- "Watermelon Seed",
- "Grape Seed",
- "Cocotank Seed",
- "Carnivorous Plant Seed",
- "Mr Carrot Seed",
- "Tomatrio Seed",
- "Shroombino Seed",
- "Mango Seed",
- "King Limone Seed",
- "Starfruit Seed"
- }
- local gears = {
- "Water Bucket",
- "Frost Grenade",
- "Banana Gun",
- "Frost Blower",
- "Carrot Launcher"
- }
- local buyAmount = 3
- print("START BUY")
- local EquipBest = ReplicatedStorage.Remotes.EquipBestBrainrots
- while true do
- for num, val in pairs(seeds) do
- local i = 0
- for i = 1, buyAmount, 1 do
- BuyItem:FireServer(val)
- task.wait(1)
- end
- end
- for num, val in pairs(gears) do
- local i = 0
- for i = 1, buyAmount, 1 do
- BuyGear:FireServer(val)
- task.wait(1)
- end
- end
- task.wait(250)
- EquipBest:FireServer()
- end
Advertisement
Add Comment
Please, Sign In to add comment