Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- By:Arfiakbar
- -- Version: V3
- local Main = Instance.new("ScreenGui")
- local Frame = Instance.new("Frame")
- local TextButton = Instance.new("TextButton")
- local TextLabel = Instance.new("TextLabel")
- local TextLabel_2 = Instance.new("TextLabel")
- local TextLabel_3 = Instance.new("TextLabel")
- local TextButton_2 = Instance.new("TextButton")
- local TextButton_3 = Instance.new("TextButton")
- local TextLabel_4 = Instance.new("TextLabel")
- local TextLabel_5 = Instance.new("TextLabel")
- Main.Name = "Main"
- Main.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
- Frame.Parent = Main
- Frame.BackgroundColor3 = Color3.new(1, 1, 1)
- Frame.Position = UDim2.new(0, 0, 0.585755885, 0)
- Frame.Size = UDim2.new(0, 216, 0, 285)
- Frame.Style = Enum.FrameStyle.RobloxSquare
- TextButton.Parent = Frame
- TextButton.BackgroundColor3 = Color3.new(0, 0, 0)
- TextButton.BorderColor3 = Color3.new(0.666667, 0, 0)
- TextButton.Position = UDim2.new(-0.00462962966, 0, 0.273684204, 0)
- TextButton.Size = UDim2.new(0, 200, 0, 25)
- TextButton.Font = Enum.Font.SourceSans
- TextButton.Text = "Teleport Ke Moon"
- TextButton.TextColor3 = Color3.new(1, 1, 1)
- TextButton.TextSize = 14
- TextButton.MouseButton1Down:connect(function()
- local mapname = "Moon"
- local Event = game:GetService("Workspace")["__REMOTES"]["Load Map"]
- Event:FireServer(mapname)
- end)
- TextLabel.Parent = Frame
- TextLabel.BackgroundColor3 = Color3.new(0, 0, 0)
- TextLabel.BorderColor3 = Color3.new(0.666667, 0, 0)
- TextLabel.Position = UDim2.new(-0.0324074067, 0, -0.150877193, 0)
- TextLabel.Size = UDim2.new(0, 215, 0, 32)
- TextLabel.Font = Enum.Font.SourceSans
- TextLabel.Text = "PetSimulator"
- TextLabel.TextColor3 = Color3.new(1, 1, 1)
- TextLabel.TextSize = 14
- TextLabel.TextStrokeColor3 = Color3.new(0.666667, 0, 0)
- TextLabel_2.Parent = Frame
- TextLabel_2.BackgroundColor3 = Color3.new(0, 0, 0)
- TextLabel_2.BorderColor3 = Color3.new(0, 0, 0)
- TextLabel_2.Position = UDim2.new(0.0231481474, 0, -0.126315787, 0)
- TextLabel_2.Size = UDim2.new(0, 35, 0, 19)
- TextLabel_2.Font = Enum.Font.SourceSans
- TextLabel_2.Text = "V3"
- TextLabel_2.TextColor3 = Color3.new(1, 1, 1)
- TextLabel_2.TextSize = 14
- TextLabel_3.Parent = Frame
- TextLabel_3.BackgroundColor3 = Color3.new(1, 1, 1)
- TextLabel_3.BorderColor3 = Color3.new(0.666667, 0, 0)
- TextLabel_3.Position = UDim2.new(-0.0379129127, 0, 0.957894802, 0)
- TextLabel_3.Size = UDim2.new(0, 83, 0, 20)
- TextLabel_3.Font = Enum.Font.SourceSans
- TextLabel_3.Text = "By:ArfiAkbar"
- TextLabel_3.TextColor3 = Color3.new(0, 0, 0)
- TextLabel_3.TextSize = 14
- TextButton_2.Parent = Frame
- TextButton_2.BackgroundColor3 = Color3.new(0, 0, 0)
- TextButton_2.BorderColor3 = Color3.new(0.666667, 0, 0)
- TextButton_2.Position = UDim2.new(-0.0231481493, 0, 0.715789497, 0)
- TextButton_2.Size = UDim2.new(0, 200, 0, 25)
- TextButton_2.Font = Enum.Font.SourceSans
- TextButton_2.Text = "Panen Uang"
- TextButton_2.TextColor3 = Color3.new(1, 1, 1)
- TextButton_2.TextSize = 14
- TextButton_2.MouseButton1Down:connect(function()
- local amount = 1000 -- experiment with this value, 1000 is maximum and for pets with high levels
- local coins = game.Workspace:WaitForChild("__REMOTES"):WaitForChild("Coins")
- local save = game.Workspace:WaitForChild("__REMOTES"):WaitForChild("Get Other Stats"):InvokeServer()
- local plr = game:GetService("Players").LocalPlayer
- local petids = {}
- local pets = game:GetService("Workspace")["__REMOTES"].Pets
- local a = #save[plr.Name]["Save"]["Pets"]
- local done = "lol meme"
- function random(t)
- local keys = {}
- for key, value in pairs(t) do
- keys[#keys+1] = key
- end
- index = keys[math.random(1, #keys)]
- return t[index]
- end
- for i=1,a do
- if(save[plr.Name]["Save"]["Pets"][a].e == true) then
- table.insert(petids, save[plr.Name]["Save"]["Pets"][a].id)
- end
- a = a - 1
- end
- function co(b)
- local done = b
- print("Mining coin: " .. b.Name)
- while(b:FindFirstChild"Health" ~= nil and b:FindFirstChild"Health".Value > 0) do
- warn(b.Name .. "- Health: " .. b.Health.Value)
- wait(0.2)
- coins:FireServer("Mine",b.Name, amount, random(petids))
- end
- end
- for _,b in next, workspace.__THINGS.Coins:GetChildren() do
- if(done ~= b) then
- coroutine.wrap(function()co(b)end)()
- end
- end
- end)
- TextButton_3.Parent = Frame
- TextButton_3.BackgroundColor3 = Color3.new(0, 0, 0)
- TextButton_3.BorderColor3 = Color3.new(0.666667, 0, 0)
- TextButton_3.Position = UDim2.new(0, 0, 0.424561411, 0)
- TextButton_3.Size = UDim2.new(0, 200, 0, 25)
- TextButton_3.Font = Enum.Font.SourceSans
- TextButton_3.Text = "Teleport Ke Candy"
- TextButton_3.TextColor3 = Color3.new(1, 1, 1)
- TextButton_3.TextSize = 14
- TextButton_3.MouseButton1Down:connect(function()
- game.Players.LocalPlayer.Character:MoveTo(Vector3.new(8.77877998, 144.27951, -1443.94481))
- end)
- TextLabel_4.Parent = Frame
- TextLabel_4.BackgroundColor3 = Color3.new(0, 0, 0)
- TextLabel_4.BorderColor3 = Color3.new(0.666667, 0, 0)
- TextLabel_4.Position = UDim2.new(0.0879629254, 0, 0.0947368369, 0)
- TextLabel_4.Size = UDim2.new(0, 153, 0, 20)
- TextLabel_4.Font = Enum.Font.SourceSans
- TextLabel_4.Text = "Tp"
- TextLabel_4.TextColor3 = Color3.new(1, 1, 1)
- TextLabel_4.TextSize = 14
- TextLabel_4.TextStrokeColor3 = Color3.new(0.666667, 0, 0)
- TextLabel_5.Parent = Frame
- TextLabel_5.BackgroundColor3 = Color3.new(0, 0, 0)
- TextLabel_5.BorderColor3 = Color3.new(0.666667, 0, 0)
- TextLabel_5.Position = UDim2.new(0.0833332986, 0, 0.578947365, 0)
- TextLabel_5.Size = UDim2.new(0, 153, 0, 20)
- TextLabel_5.Font = Enum.Font.SourceSans
- TextLabel_5.Text = "Panen"
- TextLabel_5.TextColor3 = Color3.new(1, 1, 1)
- TextLabel_5.TextSize = 14
- TextLabel_5.TextStrokeColor3 = Color3.new(0.666667, 0, 0)
Advertisement
Add Comment
Please, Sign In to add comment