local Players = game:GetService("Players") local ReplicatedStorage = game:GetService("ReplicatedStorage") local RunService = game:GetService("RunService") local player = Players.LocalPlayer local screenGui = Instance.new("ScreenGui") screenGui.Name = "SpamLuckGUI" screenGui.ResetOnSpawn = false screenGui.Parent = game:GetService("CoreGui") local frame = Instance.new("Frame") frame.Size = UDim2.new(0, 200, 0, 130) frame.Position = UDim2.new(0, 10, 0, 10) frame.BackgroundColor3 = Color3.fromRGB(30, 30, 40) frame.BackgroundTransparency = 0.1 frame.BorderSizePixel = 0 frame.Active = true frame.Draggable = true frame.Parent = screenGui local title = Instance.new("TextLabel") title.Size = UDim2.new(1, -30, 0, 30) title.Position = UDim2.new(0, 5, 0, 0) title.Text = "SPAM & LUCK" title.TextColor3 = Color3.fromRGB(0, 255, 255) title.BackgroundTransparency = 1 title.Font = Enum.Font.GothamBold title.TextSize = 16 title.TextXAlignment = Enum.TextXAlignment.Left title.Parent = frame local closeBtn = Instance.new("TextButton") closeBtn.Size = UDim2.new(0, 25, 0, 25) closeBtn.Position = UDim2.new(1, -30, 0, 3) closeBtn.Text = "X" closeBtn.BackgroundColor3 = Color3.fromRGB(220, 50, 50) closeBtn.TextColor3 = Color3.new(1, 1, 1) closeBtn.Font = Enum.Font.GothamBold closeBtn.TextSize = 16 closeBtn.Parent = frame closeBtn.MouseButton1Click:Connect(function() screenGui:Destroy() end) local spamActive = false local spamConn local spamBtn = Instance.new("TextButton") spamBtn.Size = UDim2.new(1, -10, 0, 35) spamBtn.Position = UDim2.new(0, 5, 0, 35) spamBtn.Text = "Spam Money" spamBtn.BackgroundColor3 = Color3.fromRGB(0, 170, 255) spamBtn.TextColor3 = Color3.new(1, 1, 1) spamBtn.Font = Enum.Font.GothamBold spamBtn.TextSize = 14 spamBtn.Parent = frame spamBtn.MouseButton1Click:Connect(function() spamActive = not spamActive spamBtn.Text = spamActive and "STOP SPAM" or "Spam Money" spamBtn.BackgroundColor3 = spamActive and Color3.fromRGB(255, 80, 80) or Color3.fromRGB(0, 170, 255) if spamActive then spamConn = RunService.Heartbeat:Connect(function() for i = 1, 100 do pcall(function() ReplicatedStorage:WaitForChild("Events")["9w8ye3487q3hd982wSP"]:FireServer() end) end end) else if spamConn then spamConn:Disconnect() end end end) local luckBtn = Instance.new("TextButton") luckBtn.Size = UDim2.new(1, -10, 0, 35) luckBtn.Position = UDim2.new(0, 5, 0, 80) luckBtn.Text = "Inf Server Luck" luckBtn.BackgroundColor3 = Color3.fromRGB(255, 215, 0) luckBtn.TextColor3 = Color3.new(0, 0, 0) luckBtn.Font = Enum.Font.GothamBold luckBtn.TextSize = 14 luckBtn.Parent = frame luckBtn.MouseButton1Click:Connect(function() pcall(function() ReplicatedStorage:WaitForChild("SimulateLuckPurchase"):FireServer(math.huge) end) luckBtn.Text = "Luck Sent!" task.wait(1) luckBtn.Text = "Inf Server Luck" end)