Clicking Simulator Ultimate Script | OP Autoclick AutoRebirth Clicking Simulator [UPD 1]✨

Description

so fast autoclicker and autoRebirth u can farm so fast with this

Tested With: Delta, Synapse X, Xeno, Wave, Arceous X

Script Code

local lp = game:GetService("Players").LocalPlayer<br />
local KnitServices = game:GetService("ReplicatedStorage"):WaitForChild("Packages"):WaitForChild("_Index"):WaitForChild("[email protected]"):WaitForChild("knit"):WaitForChild("Services")<br />
<br />
-- Remotos<br />
local tapRemote = KnitServices:WaitForChild("TapsService"):WaitForChild("RE"):WaitForChild("Taps")<br />
local rebirthRemote = KnitServices:WaitForChild("RebirthsService"):WaitForChild("RE"):WaitForChild("Rebirth")<br />
<br />
-- Variables Globales<br />
_G.AutoTap = false<br />
_G.AutoRebirth = false<br />
_G.ReID = 1<br />
<br />
-- UI Setup<br />
local ScreenGui = Instance.new("ScreenGui", lp.PlayerGui)<br />
ScreenGui.Name = "SamHubClean"<br />
<br />
local Main = Instance.new("Frame", ScreenGui)<br />
Main.Size = UDim2.new(0, 220, 0, 260)<br />
Main.Position = UDim2.new(0.05, 0, 0.4, 0)<br />
Main.BackgroundColor3 = Color3.fromRGB(25, 25, 30)<br />
Main.BorderSizePixel = 0<br />
Main.Active = true<br />
Main.Draggable = true<br />
<br />
local Corner = Instance.new("UICorner", Main)<br />
Corner.CornerRadius = UDim.new(0, 8)<br />
<br />
local Title = Instance.new("TextLabel", Main)<br />
Title.Size = UDim2.new(1, 0, 0, 40)<br />
Title.Text = "SAM CLICKER HUB"<br />
Title.TextColor3 = Color3.new(1, 1, 1)<br />
Title.BackgroundTransparency = 1<br />
Title.Font = Enum.Font.GothamBold<br />
<br />
-- Función para Toggles<br />
local function addToggle(text, pos, varName, callback)<br />
    local btn = Instance.new("TextButton", Main)<br />
    btn.Size = UDim2.new(0.85, 0, 0, 35)<br />
    btn.Position = UDim2.new(0.075, 0, 0, pos)<br />
    btn.Text = text .. ": OFF"<br />
    btn.BackgroundColor3 = Color3.fromRGB(40, 40, 45)<br />
    btn.TextColor3 = Color3.new(1, 1, 1)<br />
    btn.BorderSizePixel = 0<br />
    Instance.new("UICorner", btn)<br />
<br />
    btn.MouseButton1Click:Connect(function()<br />
        _G[varName] = not _G[varName]<br />
        btn.Text = text .. (_G[varName] and ": ON" or ": OFF")<br />
        btn.BackgroundColor3 = _G[varName] and Color3.fromRGB(0, 170, 100) or Color3.fromRGB(170, 0, 50)<br />
        if callback then callback(_G[varName]) end<br />
    end)<br />
end<br />
<br />
-- Toggles<br />
addToggle("🖱️ Auto Tap", 50, "AutoTap", function(v)<br />
    task.spawn(function()<br />
        while _G.AutoTap do<br />
            tapRemote:FireServer()<br />
            task.wait(0.01)<br />
        end<br />
    end)<br />
end)<br />
<br />
addToggle("♻️ Auto Rebirth", 100, "AutoRebirth", function(v)<br />
    task.spawn(function()<br />
        while _G.AutoRebirth do<br />
            rebirthRemote:FireServer(_G.ReID)<br />
            task.wait(0.5)<br />
        end<br />
    end)<br />
end)<br />
<br />
-- Selector de ID<br />
local IDLabel = Instance.new("TextLabel", Main)<br />
IDLabel.Text = "ID REBIRTH:"<br />
IDLabel.Position = UDim2.new(0, 0, 0, 150)<br />
IDLabel.Size = UDim2.new(1, 0, 0, 20)<br />
IDLabel.TextColor3 = Color3.new(0.7, 0.7, 0.7)<br />
IDLabel.BackgroundTransparency = 1<br />
<br />
local IDBox = Instance.new("TextBox", Main)<br />
IDBox.Size = UDim2.new(0.4, 0, 0, 30)<br />
IDBox.Position = UDim2.new(0.3, 0, 0, 180)<br />
IDBox.Text = "1"<br />
IDBox.BackgroundColor3 = Color3.fromRGB(35, 35, 40)<br />
IDBox.TextColor3 = Color3.new(1, 1, 1)<br />
Instance.new("UICorner", IDBox)<br />
IDBox.FocusLost:Connect(function()<br />
    _G.ReID = tonumber(IDBox.Text) or 1<br />
end)

Leave a Comment