local Players = game:GetService("Players") local LocalPlayer = Players.LocalPlayer _G.InstantZoneFarm = true -- Simple UI Button local ScreenGui = Instance.new("ScreenGui") ScreenGui.ResetOnSpawn = false ScreenGui.Parent = LocalPlayer:WaitForChild("PlayerGui") local ToggleButton = Instance.new("TextButton") ToggleButton.Size = UDim2.new(0, 150, 0, 45) ToggleButton.Position = UDim2.new(0.05, 0, 0.5, 0) ToggleButton.BackgroundColor3 = Color3.fromRGB(46, 204, 113) ToggleButton.TextColor3 = Color3.fromRGB(255, 255, 255) ToggleButton.Font = Enum.Font.SourceSansBold ToggleButton.TextSize = 14 ToggleButton.Text = "FARM: ON" ToggleButton.Parent = ScreenGui ToggleButton.MouseButton1Click:Connect(function() _G.InstantZoneFarm = not _G.InstantZoneFarm ToggleButton.Text = _G.InstantZoneFarm and "FARM: ON" or "FARM: OFF" ToggleButton.BackgroundColor3 = _G.InstantZoneFarm and Color3.fromRGB(46, 204, 113) or Color3.fromRGB(231, 76, 60) end) -- Lightweight Teleport Loop task.spawn(function() while true do task.wait(0.3) if _G.InstantZoneFarm then local character = LocalPlayer.Character local rootPart = character and character:FindFirstChild("HumanoidRootPart") local target = workspace:FindFirstChild("+1000000Win", true) if rootPart and target and character.Humanoid.Health > 0 then rootPart.AssemblyLinearVelocity = Vector3.new(0, 0, 0) if target:IsA("Model") then rootPart.CFrame = target:GetPivot() else rootPart.CFrame = target.CFrame end end end end end)