Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- Instances:
- local AutoFarmEpikDog = Instance.new("ScreenGui")
- local Main = Instance.new("Frame")
- local op = Instance.new("TextLabel")
- local Button = Instance.new("Frame")
- local OpenButton = Instance.new("TextButton")
- local CloseButton = Instance.new("TextButton")
- local o = false
- local cando = false
- --Properties:
- AutoFarmEpikDog.Name = "AutoFarmEpikDog"
- AutoFarmEpikDog.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
- Main.Name = "Main"
- Main.Parent = AutoFarmEpikDog
- Main.BackgroundColor3 = Color3.new(0.333333, 0.666667, 0)
- Main.BorderSizePixel = 0
- Main.Position = UDim2.new(0.0262498818, 0, 0.269847542, 0)
- Main.Size = UDim2.new(0, 498, 0, 268)
- Main.Style = Enum.FrameStyle.RobloxRound
- op.Name = "op"
- op.Parent = Main
- op.BackgroundColor3 = Color3.new(1, 1, 1)
- op.BackgroundTransparency = 1
- op.Position = UDim2.new(0.124836683, 0, 0.00746268593, 0)
- op.Size = UDim2.new(0, 361, 0, 85)
- op.Font = Enum.Font.ArialBold
- op.Text = "Grow and Raise an EPIK Dog! AutoFarm [Near With Doge]"
- op.TextColor3 = Color3.new(1, 1, 1)
- op.TextScaled = true
- op.TextSize = 18
- op.TextWrapped = true
- Button.Name = "Button"
- Button.Parent = Main
- Button.BackgroundColor3 = Color3.new(1, 1, 1)
- Button.BorderSizePixel = 0
- Button.Position = UDim2.new(0.340074658, 0, 0.586750031, 0)
- Button.Size = UDim2.new(0, 172, 0, 55)
- Button.Style = Enum.FrameStyle.DropShadow
- OpenButton.Name = "OpenButton"
- OpenButton.Parent = Button
- OpenButton.BackgroundColor3 = Color3.new(0.333333, 0.666667, 0)
- OpenButton.BorderSizePixel = 0
- OpenButton.Position = UDim2.new(-0.00938308984, 0, -0.0285498202, 0)
- OpenButton.Size = UDim2.new(0, 43, 0, 40)
- OpenButton.Font = Enum.Font.ArialBold
- OpenButton.Text = "Open"
- OpenButton.TextColor3 = Color3.new(1, 1, 1)
- OpenButton.TextScaled = true
- OpenButton.TextSize = 14
- OpenButton.TextWrapped = true
- OpenButton.MouseButton1Click:connect(function()
- cando = true
- print("Auto Farm Enabled")
- end)
- CloseButton.Name = "CloseButton"
- CloseButton.Parent = Button
- CloseButton.BackgroundColor3 = Color3.new(1, 0, 0)
- CloseButton.BorderSizePixel = 0
- CloseButton.Position = UDim2.new(0.763872743, 0, -0.0285498202, 0)
- CloseButton.Size = UDim2.new(0, 43, 0, 40)
- CloseButton.Font = Enum.Font.ArialBold
- CloseButton.Text = "Close"
- CloseButton.TextColor3 = Color3.new(1, 1, 1)
- CloseButton.TextScaled = true
- CloseButton.TextSize = 14
- CloseButton.TextWrapped = true
- CloseButton.MouseButton1Click:connect(function()
- cando = false
- print("AutoFarm Disabled")
- end)
- while true do
- if cando == true then
- for NumberFound,Doge in pairs(game.Workspace:GetDescendants()) do
- if Doge.Name == "Handle" then
- local NormalPosition = game.Players.LocalPlayer.Character["Right Arm"].Position
- print("-----------")
- print(NormalPosition)
- print(NumberFound)
- print(Doge.Parent)
- Doge.CFrame = CFrame.new(NormalPosition)
- wait(.25) --Recommand 0.3,if you want Faster use 0.1
- end
- end
- wait(1)
- for i,item in pairs(game.Players.LocalPlayer.Backpack:GetDescendants()) do
- if item:IsA("Tool") then
- if item.Name == "DogeBerry" then
- wait(0)
- item.Parent = game.Players.LocalPlayer.Character
- end
- end
- end
- wait(.1)
- for i,item in pairs(game.Players.LocalPlayer.Character:GetDescendants()) do
- if item:IsA("Tool") then
- if item.Name == "DogeBerry" then
- wait(0)
- item.Parent = game.Players.LocalPlayer.Backpack
- end
- end
- end
- end
- wait(1)
- if cando == true then
- print("Complete")
- else
- print("Waiting For AutoFarm Enabled")
- end
- wait(2)
- end
- Main.Active = true
- Main.Selectable = true
- Main.Draggable = true
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement