-- [[ AASHU SPAMMER V1.3 - FORBID STYLE ]] -- local SpammerName = "AASHU SPAMMER V1.3" local CreditText = "by AASHU" local Enabled = false local TargetPlayer = "" local CustomMsg = "" local Delay = 2 -- [[ ROAST LIST WITH SYMBOLS ]] -- local Roasts = { "Beta, tumse na ho payega! <[andi mandi]> 🚩", "Itna sannata kyun hai? <[Rxd ka bxcha]> 🐕", "Overacting ke 50 rupaye kaat! <[Chxt ka]> 👺", "Abbe jaa na, dimaag mat khao! <[ro mxt]> 🤡", "Shakal achi nahi toh baatein toh kar! <[bichxra]> 😂", "Beta, baap se bakwas nahi! <[bhxga kyu]> 🏃‍♂️" } -- [[ UI SYSTEM ]] -- local ScreenGui = Instance.new("ScreenGui", game.CoreGui) local MainFrame = Instance.new("Frame", ScreenGui) local Sidebar = Instance.new("Frame", MainFrame) local Content = Instance.new("Frame", MainFrame) local UIStroke = Instance.new("UIStroke", MainFrame) -- Main Frame Styling (Dark & Sleek) MainFrame.Size = UDim2.new(0, 480, 0, 320) MainFrame.Position = UDim2.new(0.5, -240, 0.5, -160) MainFrame.BackgroundColor3 = Color3.fromRGB(15, 15, 15) MainFrame.Active = true MainFrame.Draggable = true Instance.new("UICorner", MainFrame).CornerRadius = UDim.new(0, 15) UIStroke.Thickness = 3 UIStroke.ApplyStrokeMode = Enum.ApplyStrokeMode.Border -- Sidebar (Tabs) Sidebar.Size = UDim2.new(0, 130, 1, 0) Sidebar.BackgroundColor3 = Color3.fromRGB(20, 20, 20) Instance.new("UICorner", Sidebar).CornerRadius = UDim.new(0, 15) local Title = Instance.new("TextLabel", Sidebar) Title.Size = UDim2.new(1, 0, 0, 40) Title.Text = "AASHU HUB" Title.TextColor3 = Color3.fromRGB(255, 255, 255) Title.Font = Enum.Font.GothamBold Title.TextSize = 16 Title.BackgroundTransparency = 1 local SpamTab = Instance.new("TextButton", Sidebar) SpamTab.Size = UDim2.new(1, -10, 0, 40) SpamTab.Position = UDim2.new(0, 5, 0, 50) SpamTab.Text = "🔥 Spam" SpamTab.BackgroundColor3 = Color3.fromRGB(0, 170, 255) SpamTab.TextColor3 = Color3.fromRGB(255, 255, 255) SpamTab.Font = Enum.Font.GothamBold Instance.new("UICorner", SpamTab) -- Content Area Content.Size = UDim2.new(1, -145, 1, -20) Content.Position = UDim2.new(0, 140, 0, 10) Content.BackgroundTransparency = 1 -- Input Boxes (Like Video) local function CreateInput(placeholder, yPos) local box = Instance.new("TextBox", Content) box.Size = UDim2.new(1, -10, 0, 40) box.Position = UDim2.new(0, 5, 0, yPos) box.BackgroundColor3 = Color3.fromRGB(25, 25, 25) box.PlaceholderText = placeholder box.TextColor3 = Color3.fromRGB(255, 255, 255) box.Font = Enum.Font.Gotham Instance.new("UICorner", box) return box end local TargetBox = CreateInput("🎯 Target Player", 20) local CustomBox = CreateInput("✉️ Custom Message", 70) local DelayBox = CreateInput("⏲️ Delay (Default 2)", 120) -- Start Button local StartBtn = Instance.new("TextButton", Content) StartBtn.Size = UDim2.new(1, -10, 0, 50) StartBtn.Position = UDim2.new(0, 5, 0, 180) StartBtn.BackgroundColor3 = Color3.fromRGB(0, 200, 100) StartBtn.Text = "🚀 START SPAM" StartBtn.TextColor3 = Color3.fromRGB(255, 255, 255) StartBtn.Font = Enum.Font.GothamBold StartBtn.TextSize = 18 Instance.new("UICorner", StartBtn) local CreditLabel = Instance.new("TextLabel", Content) CreditLabel.Size = UDim2.new(1, 0, 0, 20) CreditLabel.Position = UDim2.new(0, 0, 0.9, 0) CreditLabel.Text = CreditText .. " | V1.3" CreditLabel.TextColor3 = Color3.fromRGB(150, 150, 150) CreditLabel.BackgroundTransparency = 1 -- [[ RGB & LOGIC ]] -- task.spawn(function() while true do UIStroke.Color = Color3.fromHSV(tick() % 5 / 5, 0.8, 1) task.wait() end end) StartBtn.MouseButton1Click:Connect(function() Enabled = not Enabled TargetPlayer = TargetBox.Text CustomMsg = CustomBox.Text Delay = tonumber(DelayBox.Text) or 2 StartBtn.Text = Enabled and "🛑 STOP SPAM" or "🚀 START SPAM" StartBtn.BackgroundColor3 = Enabled and Color3.fromRGB(200, 0, 0) or Color3.fromRGB(0, 200, 100) end) -- SPAM CORE task.spawn(function() while true do if Enabled then local finalMsg = "" if CustomMsg ~= "" then finalMsg = CustomMsg else finalMsg = Roasts[math.random(1, #Roasts)] end if TargetPlayer ~= "" then finalMsg = "@" .. TargetPlayer .. " " .. finalMsg end -- Chat Logic local TCS = game:GetService("TextChatService") if TCS.ChatVersion == Enum.ChatVersion.TextChatService then TCS.TextChannels.RBXGeneral:SendAsync(finalMsg) else game:GetService("ReplicatedStorage").DefaultChatSystemChatEvents.SayMessageRequest:FireServer(finalMsg, "All") end end task.wait(Delay) end end)