-- [∞ AUTO FARM LOOP - Pos 199, 180, -4761] + Instant Win Reset local Players = game:GetService("Players") local RunService = game:GetService("RunService") local player = Players.LocalPlayer local character = player.Character or player.CharacterAdded:Wait() local root = character:WaitForChild("HumanoidRootPart") local targetPos = Vector3.new(199, 180, -4761) local running = true print("🚀 Auto Farm Loop Started at " .. tostring(targetPos) .. " - Infinite Wins Mode") -- Main Loop spawn(function() while running do -- Instant TP to farm position root.CFrame = CFrame.new(targetPos + Vector3.new(0, 5, 0)) root.Velocity = Vector3.new(0, 0, 0) wait(0.8) -- Adjust timing based on how long one run takes to win -- After win, instant reset back (1ms style) root.CFrame = CFrame.new(targetPos + Vector3.new(0, 5, 0)) root.Velocity = Vector3.new(0, 0, 0) print("✅ Win Detected / Reset - Looping...") end end) -- Stop with this (run separately if needed) -- running = false -- Nice GUI Toggle local ScreenGui = Instance.new("ScreenGui", player.PlayerGui) local Frame = Instance.new("Frame", ScreenGui) Frame.Size = UDim2.new(0, 300, 0, 120) Frame.Position = UDim2.new(0.5, -150, 0.5, -60) Frame.BackgroundColor3 = Color3.fromRGB(10, 10, 15) Instance.new("UICorner", Frame).CornerRadius = UDim.new(0, 12) local Title = Instance.new("TextLabel", Frame) Title.Size = UDim2.new(1, 0, 0.4, 0) Title.BackgroundTransparency = 1 Title.Text = "AUTO FARM LOOP" Title.TextColor3 = Color3.fromRGB(0, 255, 150) Title.TextScaled = true local Status = Instance.new("TextLabel", Frame) Status.Size = UDim2.new(1, 0, 0.3, 0) Status.Position = UDim2.new(0, 0, 0.4, 0) Status.BackgroundTransparency = 1 Status.Text = "RUNNING - INFINITE WINS" Status.TextColor3 = Color3.fromRGB(255, 255, 100) Status.TextScaled = true local StopBtn = Instance.new("TextButton", Frame) StopBtn.Size = UDim2.new(0.8, 0, 0.25, 0) StopBtn.Position = UDim2.new(0.1, 0, 0.7, 0) StopBtn.BackgroundColor3 = Color3.fromRGB(200, 0, 0) StopBtn.Text = "STOP FARM" StopBtn.TextColor3 = Color3.new(1,1,1) StopBtn.TextScaled = true Instance.new("UICorner", StopBtn) StopBtn.MouseButton1Click:Connect(function() running = false Status.Text = "STOPPED" print("🛑 Auto Farm Stopped") end) -- Draggable Frame.Active = true Frame.Draggable = true