-- [[ Ayush v1: Ultimate RGB + Papa Edition ]] -- local Players = game:GetService("Players") local lp = Players.LocalPlayer local ReplicatedStorage = game:GetService("ReplicatedStorage") local TCS = game:GetService("TextChatService") local VirtualUser = game:GetService("VirtualUser") local RunService = game:GetService("RunService") local isSpamming = false local msgCount = 0 local bypassBase = " @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@1@@@@@@@@@@@@@@@@@@@@@@@@@@ " -- UPDATED PHRASE LIST local phrases = { "Ayush papa bol 🧏", -- The Newest Heat "tmkx me ice 🧊", "tmkx me thor ⚑", "tmkx me dhurandar 😊", "tmkx me Roblox 😱", "tmkx me Ayush papa 😜✨", "tmkx me salman khan 🀭", "tmkx me forbid 😏", "tmkx me devil 😈", "tmkc me mickey 🀣", "tmkc me Arise πŸ’€", "tmkc me Atom bomb πŸ’£πŸ’₯", "Tmkx me lun", "tmkx me griper", "tmkx bhangi 🀣", "Tmkx me kutte ka lun 😲", "tmkc me condom", "tmkc me mia khalifa", "tmkc me jonny sins 😱", "tmkc me trigonometry πŸ˜”", "tmkc me kotha😈", "tmkc me terminator 😘", "tmkc me nitrixx 😻", "tmkx me rudra", "tmkx me chkka", "tmkc me missile πŸš€", "tmkx me jasmine πŸ₯±" } -- [[ UNIVERSAL SAFE SEND ]] -- local function SafeSend(msg) msgCount = msgCount + 1 if msgCount >= 15 then task.wait(1.5) msgCount = 0 end pcall(function() local channel = TCS.TextChannels:FindFirstChild("RBXGeneral") if channel then channel:SendAsync(msg) end end) pcall(function() local chatEvent = ReplicatedStorage:FindFirstChild("DefaultChatSystemChatEvents") if chatEvent then chatEvent.SayMessageRequest:FireServer(msg, "All") end end) end -- [[ GUI SETUP ]] -- local ScreenGui = Instance.new("ScreenGui", game.CoreGui) local OpenBtn = Instance.new("TextButton", ScreenGui) local MainFrame = Instance.new("Frame", ScreenGui) local UIStroke = Instance.new("UIStroke", MainFrame) OpenBtn.Size = UDim2.new(0, 45, 0, 45) OpenBtn.Position = UDim2.new(0, 10, 0.5, -22) OpenBtn.BackgroundColor3 = Color3.fromRGB(20, 20, 20) OpenBtn.Text = "A" OpenBtn.TextColor3 = Color3.new(1, 1, 1) OpenBtn.Font = Enum.Font.SourceSansBold OpenBtn.TextSize = 25 Instance.new("UICorner", OpenBtn).CornerRadius = UDim.new(1, 0) local BtnStroke = Instance.new("UIStroke", OpenBtn) BtnStroke.Thickness = 2 MainFrame.Size = UDim2.new(0, 200, 0, 310) MainFrame.Position = UDim2.new(0.5, -100, 0.4, 0) MainFrame.BackgroundColor3 = Color3.fromRGB(10, 10, 10) MainFrame.Visible = false MainFrame.Active = true MainFrame.Draggable = true Instance.new("UICorner", MainFrame).CornerRadius = UDim.new(0, 12) UIStroke.Thickness = 2 UIStroke.ApplyStrokeMode = Enum.ApplyStrokeMode.Border local BioFrame = Instance.new("Frame", MainFrame) BioFrame.Size = UDim2.new(0.9, 0, 0, 50) BioFrame.Position = UDim2.new(0.05, 0, 0.05, 5) BioFrame.BackgroundColor3 = Color3.fromRGB(25, 25, 25) Instance.new("UICorner", BioFrame) local WelcomeLabel = Instance.new("TextLabel", BioFrame) WelcomeLabel.Size = UDim2.new(1, 0, 0.5, 0) WelcomeLabel.Text = "Welcome, Name:" WelcomeLabel.TextColor3 = Color3.fromRGB(200, 200, 200) WelcomeLabel.BackgroundTransparency = 1 WelcomeLabel.Font = Enum.Font.SourceSansItalic WelcomeLabel.TextSize = 14 local NameLabel = Instance.new("TextLabel", BioFrame) NameLabel.Size = UDim2.new(1, 0, 0.5, 0) NameLabel.Position = UDim2.new(0, 0, 0.45, 0) NameLabel.Text = lp.Name NameLabel.TextColor3 = Color3.new(1, 1, 1) NameLabel.BackgroundTransparency = 1 NameLabel.Font = Enum.Font.SourceSansBold NameLabel.TextSize = 16 local TargetBox = Instance.new("TextBox", MainFrame) TargetBox.Size = UDim2.new(0.9, 0, 0, 30) TargetBox.Position = UDim2.new(0.05, 0, 0.35, 0) TargetBox.PlaceholderText = "Target Name" TargetBox.BackgroundColor3 = Color3.fromRGB(30, 30, 30) TargetBox.TextColor3 = Color3.new(1,1,1) Instance.new("UICorner", TargetBox) local DelayBox = Instance.new("TextBox", MainFrame) DelayBox.Size = UDim2.new(0.9, 0, 0, 30) DelayBox.Position = UDim2.new(0.05, 0, 0.5, 0) DelayBox.Text = "0.2" DelayBox.BackgroundColor3 = Color3.fromRGB(30, 30, 30) DelayBox.TextColor3 = Color3.new(1,1,1) Instance.new("UICorner", DelayBox) local StartBtn = Instance.new("TextButton", MainFrame) StartBtn.Size = UDim2.new(0.9, 0, 0, 40) StartBtn.Position = UDim2.new(0.05, 0, 0.68, 0) StartBtn.Text = "START ATTACK" StartBtn.TextColor3 = Color3.new(1, 1, 1) StartBtn.Font = Enum.Font.SourceSansBold Instance.new("UICorner", StartBtn) local StopBtn = Instance.new("TextButton", MainFrame) StopBtn.Size = UDim2.new(0.9, 0, 0, 35) StopBtn.Position = UDim2.new(0.05, 0, 0.85, 0) StopBtn.Text = "STOP" StopBtn.BackgroundColor3 = Color3.fromRGB(150, 0, 0) StopBtn.TextColor3 = Color3.new(1, 1, 1) Instance.new("UICorner", StopBtn) -- [[ RGB & MINIMIZE LOGIC ]] -- task.spawn(function() while true do local hue = tick() % 5 / 5 local color = Color3.fromHSV(hue, 1, 1) UIStroke.Color = color BtnStroke.Color = color NameLabel.TextColor3 = color StartBtn.BackgroundColor3 = color task.wait() end end) OpenBtn.MouseButton1Click:Connect(function() MainFrame.Visible = not MainFrame.Visible OpenBtn.Text = MainFrame.Visible and "_" or "A" end) StartBtn.MouseButton1Click:Connect(function() if isSpamming then return end isSpamming = true local target = TargetBox.Text local userDelay = tonumber(DelayBox.Text) or 0.2 if userDelay < 0.1 then userDelay = 0.1 end task.spawn(function() SafeSend(bypassBase .. "Ayush v1 User: " .. lp.Name .. " is here! πŸ‘‘βœ¨") task.wait(userDelay) while isSpamming do for _, p in ipairs(phrases) do if not isSpamming then break end local finalBypass = bypassBase .. string.char(math.random(65, 90)) .. " " local finalMsg = (target ~= "" and finalBypass .. "[" .. target .. "] " .. p) or (finalBypass .. p) SafeSend(finalMsg) task.wait(userDelay) end end end) end) StopBtn.MouseButton1Click:Connect(function() isSpamming = false end) -- Anti-AFK lp.Idled:Connect(function() VirtualUser:Button2Down(Vector2.new(0,0), workspace.CurrentCamera.CFrame) task.wait(1) VirtualUser:Button2Up(Vector2.new(0,0), workspace.CurrentCamera.CFrame) end)