Farm Diamond Bubble Gum Clicker Script
Roblox Scripts is what Roblox players and coders use to build interactive games. To be more specific, players use Lua scripts—a popular scripting and programming language.
We do not any harmful on your devices we always check it before we post online.
Instruction
1.Open Roblox And Start Playing 2.Click The Blue Circle To Copy The Script Code 3.Paste The Script Code Into Your Executor 4.Then Execute The Script Code 5.Enjoy
Use your dummy account first we are not responsible if your account getting Ban.
Script Code
_G.FarmDiamonds = true --TOGGLE [true, false] for i,v in pairs(game:GetService("ReplicatedStorage").Nevermore["Shared Modules"]:GetChildren()) do v.Name = i end local mdl = require(game:GetService("ReplicatedStorage").Nevermore["Shared Modules"]["8"]) local plr = game.Players.LocalPlayer while _G.FarmDiamonds do task.wait(.1) local trashcan = {} get_pickups = mdl.Invoke("get pickups") for i,v in pairs(get_pickups) do if v.n:match("Diamond") then print("Found:", v.n, " in ", v.w) plr.Character.HumanoidRootPart.CFrame = CFrame.new(v.p) * CFrame.new(1,2,1) task.wait(.15) local args = {[1] = {[1] = {[1] = tostring(i)},[2] = {[1] = false}}} game:GetService("ReplicatedStorage").Remotes:FindFirstChild("collect pickup"):FireServer(unpack(args)) else table.insert(trashcan, i) end end print("Took all diamonds, deleting parts") for i,v in pairs(game:GetService("Workspace").Stuff.Pickups:GetChildren()) do for a,z in pairs(trashcan) do if v.Name == z then v:Destroy() end end end task.wait(1) end