local ReplicatedStorage = game:GetService("ReplicatedStorage") local Players = game:GetService("Players") local player = Players.LocalPlayer local gui = Instance.new("ScreenGui") gui.Name = "AutoTaps" gui.ResetOnSpawn = false gui.Parent = player:WaitForChild("PlayerGui") local main = Instance.new("Frame") main.Size = UDim2.new(0, 220, 0, 170) main.Position = UDim2.new(0.5, -110, 0.5, -85) main.BackgroundColor3 = Color3.fromRGB(40, 40, 40) main.BorderSizePixel = 0 main.Active = true main.Draggable = true main.Parent = gui local corner = Instance.new("UICorner") corner.CornerRadius = UDim.new(0, 10) corner.Parent = main local stroke = Instance.new("UIStroke") stroke.Color = Color3.fromRGB(255, 0, 0) stroke.Thickness = 2 stroke.Parent = main local title = Instance.new("TextLabel") title.Text = "⚡ AUTO TAPS & EGGS ⚡ " title.Size = UDim2.new(1, 0, 0, 35) title.BackgroundColor3 = Color3.fromRGB(60, 60, 60) title.TextColor3 = Color3.fromRGB(255, 0, 0) title.Font = Enum.Font.GothamBold title.TextSize = 15 title.Parent = main local titleCorner = Instance.new("UICorner") titleCorner.CornerRadius = UDim.new(0, 10, 0, 0) titleCorner.Parent = title local closeBtn = Instance.new("TextButton") closeBtn.Text = "X" closeBtn.Size = UDim2.new(0, 25, 0, 25) closeBtn.Position = UDim2.new(1, -30, 0, 5) closeBtn.BackgroundColor3 = Color3.fromRGB(255, 0, 0) closeBtn.TextColor3 = Color3.new(1, 1, 1) closeBtn.Font = Enum.Font.GothamBlack closeBtn.TextSize = 14 closeBtn.Parent = title local autoBtn = Instance.new("TextButton") autoBtn.Text = "TAPS: OFF" autoBtn.Size = UDim2.new(0.9, 0, 0, 55) autoBtn.Position = UDim2.new(0.05, 0, 0, 40) autoBtn.BackgroundColor3 = Color3.fromRGB(255, 0, 0) autoBtn.TextColor3 = Color3.new(1, 1, 1) autoBtn.Font = Enum.Font.GothamBold autoBtn.TextSize = 18 autoBtn.Parent = main local btnCorner = Instance.new("UICorner") btnCorner.CornerRadius = UDim.new(0, 10) btnCorner.Parent = autoBtn local eggBtn = Instance.new("TextButton") eggBtn.Name = "OpenEggButton" eggBtn.Text = "EGGS Statistics only" eggBtn.Size = UDim2.new(0.9, 0, 0, 55) eggBtn.Position = UDim2.new(0.05, 0, 0, 105) eggBtn.BackgroundColor3 = Color3.fromRGB(255, 0, 0) eggBtn.TextColor3 = Color3.new(1, 1, 1) eggBtn.Font = Enum.Font.GothamBold eggBtn.TextSize = 20 eggBtn.Parent = main local eggBtnCorner = Instance.new("UICorner") eggBtnCorner.CornerRadius = UDim.new(0, 10) eggBtnCorner.Parent = eggBtn local autoEnabled = false local eggAutoEnabled = false local autoConnection = nil local eggAutoConnection = nil local RunService = game:GetService("RunService") local UserInputService = game:GetService("UserInputService") title.InputBegan:Connect(function(input) if input.UserInputType == Enum.UserInputType.Touch then local startPos = input.Position local frameStartPos = main.Position local moveConnection moveConnection = input.Changed:Connect(function() if input.UserInputState == Enum.UserInputState.End then moveConnection:Disconnect() else local delta = input.Position - startPos main.Position = UDim2.new( frameStartPos.X.Scale, frameStartPos.X.Offset + delta.X, frameStartPos.Y.Scale, frameStartPos.Y.Offset + delta.Y ) end end) end end) local function toggleAutoTaps() autoEnabled = not autoEnabled if autoEnabled then autoBtn.Text = "TAPS: ON" autoBtn.BackgroundColor3 = Color3.fromRGB(255, 50, 50) if autoConnection then autoConnection:Disconnect() end autoConnection = RunService.RenderStepped:Connect(function() local clickerRemote = ReplicatedStorage:FindFirstChild("Remotes") if clickerRemote then clickerRemote = clickerRemote:FindFirstChild("Clicker") if clickerRemote then if clickerRemote:IsA("RemoteEvent") then pcall(function() clickerRemote:FireServer() end) elseif clickerRemote:IsA("RemoteFunction") then pcall(function() clickerRemote:InvokeServer() end) end end end end) else autoBtn.Text = "TAPS: OFF" autoBtn.BackgroundColor3 = Color3.fromRGB(255, 0, 0) if autoConnection then autoConnection:Disconnect() autoConnection = nil end end end local function toggleAutoEgg() eggAutoEnabled = not eggAutoEnabled if eggAutoEnabled then eggBtn.Text = "EGGS: ON" eggBtn.BackgroundColor3 = Color3.fromRGB(255, 50, 50) if eggAutoConnection then eggAutoConnection:Disconnect() end eggAutoConnection = RunService.Heartbeat:Connect(function() local threeEggRemote = ReplicatedStorage:FindFirstChild("Remotes") if threeEggRemote then threeEggRemote = threeEggRemote:FindFirstChild("ThreeEgg") if threeEggRemote then if threeEggRemote:IsA("RemoteEvent") then pcall(function() threeEggRemote:FireServer() end) elseif threeEggRemote:IsA("RemoteFunction") then pcall(function() threeEggRemote:InvokeServer() end) end end end end) else eggBtn.Text = "EGGS Statistics only" eggBtn.BackgroundColor3 = Color3.fromRGB(255, 0, 0) if eggAutoConnection then eggAutoConnection:Disconnect() eggAutoConnection = nil end end end autoBtn.MouseButton1Click:Connect(toggleAutoTaps) eggBtn.MouseButton1Click:Connect(toggleAutoEgg) closeBtn.MouseButton1Click:Connect(function() if autoEnabled then toggleAutoTaps() end if eggAutoEnabled then toggleAutoEgg() end gui:Destroy() end) closeBtn.MouseEnter:Connect(function() closeBtn.BackgroundColor3 = Color3.fromRGB(255, 80, 80) end) closeBtn.MouseLeave:Connect(function() closeBtn.BackgroundColor3 = Color3.fromRGB(255, 0, 0) end) autoBtn.MouseEnter:Connect(function() if autoEnabled then autoBtn.BackgroundColor3 = Color3.fromRGB(255, 80, 80) else autoBtn.BackgroundColor3 = Color3.fromRGB(255, 80, 80) end end) autoBtn.MouseLeave:Connect(function() if autoEnabled then autoBtn.BackgroundColor3 = Color3.fromRGB(255, 50, 50) else autoBtn.BackgroundColor3 = Color3.fromRGB(255, 0, 0) end end) eggBtn.MouseEnter:Connect(function() if eggAutoEnabled then eggBtn.BackgroundColor3 = Color3.fromRGB(255, 80, 80) else eggBtn.BackgroundColor3 = Color3.fromRGB(255, 80, 80) end end) eggBtn.MouseLeave:Connect(function() if eggAutoEnabled then eggBtn.BackgroundColor3 = Color3.fromRGB(255, 50, 50) else eggBtn.BackgroundColor3 = Color3.fromRGB(255, 0, 0) end end)