--[[ WARNING: Heads up! This script has not been verified by ScriptBlox. Use at your own risk! ]] setclipboard("https://discord.gg/TR3quUFgT6") local player = game.Players.LocalPlayer local gui = Instance.new("ScreenGui") gui.Name = "StrengthUpgradeUI" gui.ResetOnSpawn = false gui.Parent = player:WaitForChild("PlayerGui") local frame = Instance.new("Frame") frame.Size = UDim2.new(0, 420, 0, 160) frame.Position = UDim2.new(0.5, -210, 0.3, 0) frame.AnchorPoint = Vector2.new(0.5, 0) frame.BackgroundColor3 = Color3.fromRGB(30, 30, 30) frame.BorderSizePixel = 0 frame.Active = true frame.Draggable = true frame.Parent = gui local label = Instance.new("TextLabel") label.Size = UDim2.new(1, 0, 0.3, 0) label.BackgroundTransparency = 1 label.TextColor3 = Color3.fromRGB(255, 255, 255) label.TextScaled = true label.Font = Enum.Font.SourceSansBold label.TextWrapped = true label.Text = "UPGRADE STRENGTH TO GET MORE MONEY! | REBIRTHS TAKES ALL YOUR MONEY AWAY" label.Parent = frame local ReplicatedStorage = game:GetService("ReplicatedStorage") local ClickEnded = ReplicatedStorage:WaitForChild("ClickEnded") local RebirthEvent = ReplicatedStorage:WaitForChild("RebirthEvent") local strengthButton = Instance.new("TextButton") strengthButton.Size = UDim2.new(0.45, 0, 0.25, 0) strengthButton.Position = UDim2.new(0.05, 0, 0.7, 0) strengthButton.BackgroundColor3 = Color3.fromRGB(70, 130, 180) strengthButton.TextColor3 = Color3.fromRGB(255, 255, 255) strengthButton.TextScaled = true strengthButton.Font = Enum.Font.SourceSansBold strengthButton.Text = "START" strengthButton.Parent = frame local rebirthButton = Instance.new("TextButton") rebirthButton.Size = UDim2.new(0.45, 0, 0.25, 0) rebirthButton.Position = UDim2.new(0.5, 0, 0.7, 0) rebirthButton.BackgroundColor3 = Color3.fromRGB(200, 50, 50) rebirthButton.TextColor3 = Color3.fromRGB(255, 255, 255) rebirthButton.TextScaled = true rebirthButton.Font = Enum.Font.SourceSansBold rebirthButton.Text = "REBIRTHS" rebirthButton.Parent = frame local spammingStrength = false local spammingRebirth = false strengthButton.MouseButton1Click:Connect(function() spammingStrength = not spammingStrength strengthButton.Text = spammingStrength and "STOP" or "START" if spammingStrength then task.spawn(function() while spammingStrength do ClickEnded:FireServer() task.wait(0.001) end end) end end) rebirthButton.MouseButton1Click:Connect(function() spammingRebirth = not spammingRebirth rebirthButton.Text = spammingRebirth and "STOP" or "REBIRTHS" if spammingRebirth then task.spawn(function() while spammingRebirth do RebirthEvent:FireServer(1, 0) task.wait(0.001) end end) end end)