--/--------------------------------\-- --// MADE BY KHLAT \\-- --// SUPER-FAST PUMKIN COLLECTOR V2 \\-- --// IF IT DOSENT WORK JUST MAKE IT \\-- --// RUN FOR 5 MINUTES IF IT DOSENT \\-- --// WORK THEN CHANGE CAR TO GROUP \\-- --// CAR IF IT DOSENT WORK JUMP OUT \\-- --// OF THE CAR (F) AND RELOAD CAR \\-- --// have fun niggas \\-- --/--------------------------------------------------\-- local speed = 100 -- اذا يعلق نقص ذا warn("Anti afk running") game:GetService("Players").LocalPlayer.Idled:connect(function() warn("Anti afk ran") game:GetService("VirtualUser"):CaptureController() game:GetService("VirtualUser"):ClickButton2(Vector2.new()) end) workspace.FallenPartsDestroyHeight = "nan" local first = false local guiScreen = Instance.new("ScreenGui") guiScreen.Name = "TopGUI" guiScreen.DisplayOrder = 1000 guiScreen.Parent = game.CoreGui local guiFrame = Instance.new("Frame") guiFrame.Size = UDim2.new(0, 200, 0, 150) guiFrame.Position = UDim2.new(0, 10, 0, 10) guiFrame.BackgroundTransparency = 0.5 guiFrame.BackgroundColor3 = Color3.fromRGB(0, 0, 0) guiFrame.BorderSizePixel = 0 guiFrame.Parent = guiScreen local autoFarmToggle = Instance.new("TextButton") autoFarmToggle.Size = UDim2.new(0, 180, 0, 30) autoFarmToggle.Position = UDim2.new(0.5, -90, 0, 10) autoFarmToggle.Text = "Auto Farm: OFF" autoFarmToggle.TextColor3 = Color3.fromRGB(255, 255, 255) autoFarmToggle.BackgroundTransparency = 0.3 autoFarmToggle.BackgroundColor3 = Color3.fromRGB(0, 0, 0) autoFarmToggle.Parent = guiFrame local autoFarmActive = false autoFarmToggle.MouseButton1Click:Connect(function() autoFarmActive = not autoFarmActive if autoFarmActive then local mathlock = 700 autoFarmToggle.Text = "Auto Farm: ON" spawn(function() while autoFarmActive do local hum = game.Players.LocalPlayer.Character.Humanoid local car = hum.SeatPart.Parent car.PrimaryPart = car.Body:FindFirstChild("#Weight") if not first then local Spin = Instance.new("BodyAngularVelocity") Spin.Name = "Spinning" Spin.Parent = game.Players.LocalPlayer.Character:WaitForChild("HumanoidRootPart") Spin.MaxTorque = Vector3.new(0, math.huge, 0) Spin.AngularVelocity = Vector3.new(0,speed,0) wait(0.5) car:PivotTo(CFrame.new(Vector3.new(14873.6045, -32289.8691, -45724.4688, -0.757558823, 0.642849863, 0.113351859, 1.25787967e-08, 0.173648313, -0.98480773, -0.652766883, -0.746049821, -0.131548822))) wait(0.1) Spin.AngularVelocity = Vector3.new(0,100,0) end car.PrimaryPart.Velocity = Vector3.new(0, 0, 0) first = true local location = Vector3.new(116.636543, 215.534973, 16037.3564, 0.998216331, -0.00356830447, 0.0595936067, 0.00271370797, 0.999892414, 0.0144151859, -0.0596386306, -0.0142277544, 0.998118639) repeat task.wait() if not game.Players.LocalPlayer.Character:FindFirstChild("HumanoidRootPart"):FindFirstChild("Spinning") then local Spin = Instance.new("BodyAngularVelocity") Spin.Name = "Spinning" Spin.Parent = game.Players.LocalPlayer.Character:WaitForChild("HumanoidRootPart") Spin.MaxTorque = Vector3.new(0, math.huge, 0) Spin.AngularVelocity = Vector3.new(0,speed,0) end wait(1) car:PivotTo(CFrame.new(Vector3.new(14873.6045, -32289.8691, -45724.4688, -0.757558823, 0.642849863, 0.113351859, 1.25787967e-08, 0.173648313, -0.98480773, -0.652766883, -0.746049821, -0.131548822))) wait(0.1) car.PrimaryPart.Velocity = car.PrimaryPart.CFrame.LookVector * mathlock until game.Players.LocalPlayer:DistanceFromCharacter(location) < 50 or not autoFarmActive car.PrimaryPart.Velocity = Vector3.new(0, 0, 0) location = Vector3.new(-177.29299926757812, 72.50499725341797, 177.41400146484375) repeat task.wait() car:PivotTo(CFrame.new(Vector3.new(14873.6045, -32289.8691, -45724.4688, -0.757558823, 0.642849863, 0.113351859, 1.25787967e-08, 0.173648313, -0.98480773, -0.652766883, -0.746049821, -0.131548822))) until game.Players.LocalPlayer:DistanceFromCharacter(location) < 50 or not autoFarmActive car.PrimaryPart.Velocity = Vector3.new(0, 0, 0) end end) else autoFarmToggle.Text = "Auto Farm: OFF" for i,v in pairs(game.Players.LocalPlayer.Character.HumanoidRootPart:GetChildren()) do if v.Name == "Spinning" then v:Destroy() end end end end) -- Add Toggle for Black Screen local blackScreenToggle = Instance.new("TextButton") blackScreenToggle.Size = UDim2.new(0, 180, 0, 30) blackScreenToggle.Position = UDim2.new(0.5, -90, 0, 50) blackScreenToggle.Text = "Black Screen: OFF" blackScreenToggle.TextColor3 = Color3.fromRGB(255, 255, 255) blackScreenToggle.BackgroundTransparency = 0.3 blackScreenToggle.BackgroundColor3 = Color3.fromRGB(0, 0, 0) blackScreenToggle.Parent = guiFrame blackScreenToggle.MouseButton1Click:Connect(function() if blackScreenToggle.Text == "Black Screen: OFF" then -- Create Black Screen local blackScreen = Instance.new("ScreenGui") blackScreen.Name = "BlackScreen" blackScreen.DisplayOrder = -1000 blackScreen.Parent = game.CoreGui local blackFrame = Instance.new("Frame") blackFrame.Size = UDim2.new(1, 0, 1, 0) blackFrame.BackgroundColor3 = Color3.new(0, 0, 0) blackFrame.BorderSizePixel = 0 blackFrame.Parent = blackScreen blackScreenToggle.Text = "Black Screen: ON" else -- Remove Black Screen local blackScreen = game.CoreGui:FindFirstChild("BlackScreen") if blackScreen then blackScreen:Destroy() end blackScreenToggle.Text = "Black Screen: OFF" end end)