-- Create ScreenGui local screenGui = Instance.new("ScreenGui") screenGui.Name = "MoneyRebirthSpamGUI" screenGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui") screenGui.ResetOnSpawn = false -- Create main frame local mainFrame = Instance.new("Frame") mainFrame.Size = UDim2.new(0, 250, 0, 100) mainFrame.Position = UDim2.new(0.5, -125, 0.5, -50) mainFrame.BackgroundColor3 = Color3.fromRGB(35, 35, 35) mainFrame.BorderSizePixel = 0 mainFrame.Parent = screenGui mainFrame.Active = true mainFrame.Draggable = true -- Title local title = Instance.new("TextLabel") title.Size = UDim2.new(1, 0, 0, 30) title.Position = UDim2.new(0, 0, 0, 0) title.BackgroundColor3 = Color3.fromRGB(50, 50, 50) title.BorderSizePixel = 0 title.Text = "Money & Rebirth Spam" title.TextColor3 = Color3.fromRGB(255, 255, 255) title.TextScaled = true title.Parent = mainFrame -- Toggle Button local toggleButton = Instance.new("TextButton") toggleButton.Size = UDim2.new(0, 200, 0, 40) toggleButton.Position = UDim2.new(0.5, -100, 0, 40) toggleButton.BackgroundColor3 = Color3.fromRGB(70, 70, 70) toggleButton.BorderSizePixel = 0 toggleButton.Text = "Start Spam" toggleButton.TextColor3 = Color3.fromRGB(255, 255, 255) toggleButton.TextScaled = true toggleButton.Parent = mainFrame -- Spam control flag local spamming = false -- Function to spam remote events local function spamRemotes() spawn(function() while spamming do -- Give Money Remote pcall(function() local args = { { value = 9e300, -- huge but safe number type = "Money", chance = 0.45 } } game:GetService("ReplicatedStorage"):WaitForChild("Remotes"):WaitForChild("Roulette"):WaitForChild("GiveOutReward"):FireServer(unpack(args)) end) -- Rebirth Remote pcall(function() game:GetService("ReplicatedStorage"):WaitForChild("Events"):WaitForChild("Rebirth"):FireServer() end) wait(0.001) -- spam speed end end) end -- Toggle button behavior toggleButton.MouseButton1Click:Connect(function() spamming = not spamming if spamming then toggleButton.Text = "Stop Spam" spamRemotes() else toggleButton.Text = "Start Spam" end end)