Popular Scripts
BloxStrik Script | Nickhub Lite ESP Enemy Esp Team Aimbot Esp Line Distance POV
9118 views • 4 weeks ago
Collect Dinos Script | AUTO COLLECT MONEY, DIG, PLACE, HATCH EGG. DISCARD EGG
8464 views • 4 weeks ago
Sailor Piece Script | Copernix Hub – Sailor Piece (ESP & SPEED) NO KEY [🎄Christmas❄️]
2713 views • 4 weeks ago
Hooked Script | Luminis Hub – Hooked! (ESP & SPEED) NO KEY
1795 views • 4 weeks ago
Hooked Script | Zxc Hub – Hooked! (ESP & SPEED) NO KEY !
1059 views • 4 weeks ago
Yes, No, Maybe? Script | Noctis V7 — Infinite Money • Hidden Word Reveal
760 views • 4 weeks ago
Recent Scripts
War tycoon Script | keyless script (update) [Katyusha]
143 views • 3 weeks ago
VC Disconnect All – Universal
150 views • 3 weeks ago
Build A Boat For Treasure Script | [KEYLESS] 4479Hub #1 BEST SCRIPT InstaTP AutoFarm ALL IN 1
121 views • 3 weeks ago
Case Rolling RNG Script | Infinite Money / Insta Case [NEW]
127 views • 3 weeks ago
+1 Speed Demon Slayer Escape Script
137 views • 3 weeks ago
AI Groq Chatbot
98 views • 3 weeks ago
Clicking Simulator Ultimate Script | OP Autoclick AutoRebirth Clicking Simulator [UPD 1]✨
- Clicking Simulator Ultimate
- 4 weeks ago
- 85 views
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)