ScriptBlox is undergoing maintenance, so downtime is possible. Sorry for the inconvenience!
⛏️Dig to Save Brainrot
4.6k Views

Inf Money

⛏️Dig to Save BrainrotUploaded by
8 months ago
Please login to perform these actions:

Description

Hold P To gain money (you get more if u upgrade pick / get pets)

View Raw
Edited By: chickennuggergaming Download


Comments
5
User profile picture
wikinewgaming 8 months ago
W sc works for solara
wikinewgaming's profile picturewikinewgamingW sc works for solara
User profile picture
chickennuggergaming 8 months ago
@wikinewgaming thanks vro
User profile picture
123hi123 8 months ago
il test
User profile picture
meowcatisbackreal 8 months ago
local ReplicatedStorage = game:GetService("ReplicatedStorage") local Players = game:GetService("Players") local Player = Players.LocalPlayer local PlayerGui = Player:WaitForChild("PlayerGui") local holding = false -- Create ScreenGui local screenGui = Instance.new("ScreenGui") screenGui.Parent = PlayerGui screenGui.ResetOnS* = false -- Main Button local mainButton = Instance.new("TextButton") mainButton.Size = UDim2.new(0, 100, 0, 50) mainButton.Position = UDim2.new(0, 50, 0, 50) mainButton.Text = "DiCe 🎲" mainButton.BackgroundColor3 = Color3.fromRGB(50, 50, 50) mainButton.TextColor3 = Color3.fromRGB(255, 255, 255) mainButton.Parent = screenGui -- Rounded corners local uicorner = Instance.new("UICorner") uicorner.Parent = mainButton -- Draggable mainButton.Active = true mainButton.Draggable = true -- Toggle mining mainButton.MouseButton1Click:Connect(function() holding = not holding if holding then task.spawn(function() while holding do local args = {{Info = "Mine"}} ReplicatedStorage:WaitForChild("Remotes"):WaitForChild("GameHandler"):FireServer(unpack(args)) task.wait(0.1) end end) end end) [it's a mobile verison]
meowcatisbackreal's profile picturemeowcatisbackreallocal ReplicatedStorage = game:GetService("Replica...
User profile picture
chickennuggergaming 8 months ago
@meowcatisbackreal nice
Please Login to add a comment.