-- Configuration local REMOTE = game:GetService("ReplicatedStorage"):WaitForChild("Remotes"):WaitForChild("DropperClick") local CLICK_INTERVAL = 0.02 -- Blazing fast clicking speed (adjust if the game rate-limits you) -- Services local TweenService = game:GetService("TweenService") local Players = game:GetService("Players") local LocalPlayer = Players.LocalPlayer local PlayerGui = LocalPlayer:WaitForChild("PlayerGui") -- UI Cleanup if PlayerGui:FindFirstChild("AutoClickerGui") then PlayerGui.AutoClickerGui:Destroy() end -- Create UI Elements local ScreenGui = Instance.new("ScreenGui") ScreenGui.Name = "AutoClickerGui" ScreenGui.ResetOnSpawn = false ScreenGui.Parent = PlayerGui -- Main Frame local MainFrame = Instance.new("Frame") MainFrame.Size = UDim2.new(0, 220, 0, 130) MainFrame.Position = UDim2.new(0.5, -110, 0.4, -65) MainFrame.BackgroundColor3 = Color3.fromRGB(30, 30, 35) MainFrame.BorderSizePixel = 0 MainFrame.Active = true MainFrame.Draggable = true MainFrame.Parent = ScreenGui local UICorner = Instance.new("UICorner") UICorner.CornerRadius = UDim.new(0, 8) UICorner.Parent = MainFrame -- Title Label local Title = Instance.new("TextLabel") Title.Size = UDim2.new(1, 0, 0, 40) Title.BackgroundTransparency = 1 Title.Text = "Dropper Auto-Clicker" Title.TextColor3 = Color3.fromRGB(255, 255, 255) Title.TextSize = 16 Title.Font = Enum.Font.GothamBold Title.Parent = MainFrame -- Toggle Button local ToggleBtn = Instance.new("TextButton") ToggleBtn.Size = UDim2.new(0, 160, 0, 45) ToggleBtn.Position = UDim2.new(0.5, -80, 0.55, -22) ToggleBtn.BackgroundColor3 = Color3.fromRGB(230, 75, 75) ToggleBtn.Text = "STATUS: OFF" ToggleBtn.TextColor3 = Color3.fromRGB(255, 255, 255) ToggleBtn.TextSize = 14 ToggleBtn.Font = Enum.Font.GothamBold ToggleBtn.AutoButtonColor = false ToggleBtn.Parent = MainFrame local BtnCorner = Instance.new("UICorner") BtnCorner.CornerRadius = UDim.new(0, 6) BtnCorner.Parent = ToggleBtn -- State Variable local isToggled = false -- REMOTE PIPELINE LOOP task.spawn(function() while true do task.wait(CLICK_INTERVAL) if isToggled and REMOTE then -- Bypasses physics and mouse completely by telling the server directly that you clicked REMOTE:FireServer() end end end) -- UI Interactions ToggleBtn.MouseButton1Click:Connect(function() isToggled = not isToggled local targetColor = isToggled and Color3.fromRGB(60, 180, 110) or Color3.fromRGB(230, 75, 75) local targetText = isToggled and "STATUS: ON" or "STATUS: OFF" local tweenInfo = TweenInfo.new(0.2, Enum.EasingStyle.Quad, Enum.EasingDirection.Out) TweenService:Create(ToggleBtn, tweenInfo, {BackgroundColor3 = targetColor}):Play() ToggleBtn.Text = targetText end)