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