local S,M,FA=Instance.new"ScreenGui",Instance.new"Frame",false S.Name="EVRF"S.Parent=game:GetService"CoreGui"S.ResetOnSpawn=false M.Parent=S M.BackgroundColor3=Color3.fromRGB(25,25,25)M.BorderSizePixel=0 M.Position=UDim2.new(0,25,1,-125)M.Size=UDim2.new(0,300,0,100)M.Active=true M.Draggable=true local I=Instance.new("ImageLabel",M)I.Size=UDim2.new(1,0,1,-25)I.Position=UDim2.new(0,0,0,25)I.Image="rbxthumb://type=Asset&id=114293912341839&w=420&h=420"I.BackgroundTransparency=1 I.ImageTransparency=0.7 I.ScaleType=Enum.ScaleType.Stretch local T=Instance.new("TextLabel",M)T.BackgroundColor3=Color3.fromRGB(40,40,40)T.Size=UDim2.new(1,0,0,25)T.Font=Enum.Font.SourceSansBold T.Text=" HOLDOUT FARMHELPER (Made by RalSDto)"T.TextColor3=Color3.fromRGB(255,255,255)T.TextSize=11 T.TextXAlignment=Enum.TextXAlignment.Left local C=Instance.new("TextButton",M)C.BackgroundColor3=Color3.fromRGB(200,50,50)C.Position=UDim2.new(1,-25,0,0)C.Size=UDim2.new(0,25,0,25)C.Font=Enum.Font.SourceSansBold C.Text="X"C.TextColor3=Color3.fromRGB(255,255,255)C.TextSize=14 local tpV,flySpeed=0.1,400 local farmPts={Vector3.new(-667.04,294.55,-541.59),Vector3.new(490.13,297.22,-541.59),Vector3.new(447.9,297.11,487.81),Vector3.new(-666.23,297.03,487.7)}local centerPt=Vector3.new(-30.87,2.07,-14.92) local plat = nil local function getPlat(hrp) if plat and plat.Parent then return plat end plat = Instance.new("Part") plat.Size = Vector3.new(8, 1, 8) plat.Transparency = 1 plat.Anchored = true plat.Parent = workspace return plat end local function flyTo(targetPos) local c=game.Players.LocalPlayer.Character local hrp=c and c:FindFirstChild"HumanoidRootPart" local h=c and c:FindFirstChildOfClass"Humanoid" if not hrp or not h or h.Health <= 0 then return end local p = getPlat(hrp) local lastDist = (hrp.Position - targetPos).Magnitude while FA and hrp and h and h.Health > 0 do local cur = hrp.Position local dist = (cur - targetPos).Magnitude if dist < 6 or dist > lastDist + 5 then break end lastDist = dist local dir = (targetPos - cur).Unit local nextPos = cur + dir * (flySpeed * 0.015) p.Position = nextPos - Vector3.new(0, 3.5, 0) hrp.CFrame = CFrame.new(nextPos) task.wait() end if hrp then hrp.CFrame = CFrame.new(targetPos) end end local FB=Instance.new("TextButton",M)FB.Size=UDim2.new(0,125,0,45)FB.Position=UDim2.new(0,20,0,40)FB.BackgroundColor3=Color3.fromRGB(80,50,50)FB.Font=Enum.Font.SourceSansBold FB.Text="FARM: START"FB.TextColor3=Color3.fromRGB(255,255,255)FB.TextSize=12 FB.MouseButton1Click:Connect(function() FA=not FA FB.Text=FA and "FARM: STOP" or "FARM: START" FB.BackgroundColor3=FA and Color3.fromRGB(150,50,50) or Color3.fromRGB(80,50,50) if not FA and plat then plat:Destroy() plat = nil end end)local C_Btn=Instance.new("TextButton",M)C_Btn.Size=UDim2.new(0,125,0,45)C_Btn.Position=UDim2.new(0,155,0,40)C_Btn.BackgroundColor3=Color3.fromRGB(50,50,80)C_Btn.Font=Enum.Font.SourceSansBold C_Btn.Text="TO CENTER"C_Btn.TextColor3=Color3.fromRGB(255,255,255)C_Btn.TextSize=12 C_Btn.MouseButton1Click:Connect(function() task.spawn(function() local oldFA=FA FA=false task.wait(0.05) flyTo(centerPt) if not oldFA and plat then plat:Destroy() plat = nil end FA=oldFA end) end) task.spawn(function() while true do if FA then for _,tp in ipairs(farmPts) do if not FA then break end pcall(function() local c=game.Players.LocalPlayer.Character local h=c and c:FindFirstChildOfClass"Humanoid" if h and h.Health > 0 then flyTo(tp) task.wait(tpV) else task.wait(0.2) end end) end else task.wait(0.5) end end end) C.MouseButton1Click:Connect(function() FA=false if plat then plat:Destroy() end S:Destroy() end)