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)
Comments
5

Offline
wikinewgaming 8 months ago
W sc works for solara
wikinewgamingW sc works for solara
Offline
chickennuggergaming 8 months ago
@wikinewgaming thanks vro
Offline
123hi123 8 months ago
il test
Offline
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]
meowcatisbackreallocal ReplicatedStorage = game:GetService("Replica...
Offline
chickennuggergaming 8 months ago
@meowcatisbackreal nice



