-- ANU V1 - Intense Textbox with Send Button local Players = game:GetService("Players") local TextChatService = game:GetService("TextChatService") local player = Players.LocalPlayer local channel = TextChatService:WaitForChild("TextChannels"):WaitForChild("RBXGeneral") -- SETTINGS local DELAY = 3 local MIN_DELAY = 0.5 local MAX_DELAY = 10 local AUTO_SPAM_AFTER = 5 local AUTO_SPAM_MESSAGE = "@@AUTO@@" -- AUTO CHAOS local AUTO_CHAOS_TRIGGER = 6 local chaosCounter = 0 local AUTO_CHAOS_MESSAGE = "🥱☠️ scripted by anurag ☠️🥱" -- FORMATS (tere dost ke sare, repeat utna hi) local FORMATS = { ["Format 1"] = string.rep("-_-_-_-_-_-_-_-_-_-_--_-_-", 5), ["-- CHAOS"] = string.rep("--", 67), ["æ CHAOS"] = string.rep("æ", 67), ["$ CHAOS"] = string.rep("$", 67), ["- CHAOS"] = string.rep("-", 67), ["~ CHAOS"] = string.rep("~", 60) } local currentFormat = FORMATS["Format 1"] -- SLANGS (dono scripts ke combine) local SLANGS = { "tmkx mei jonny", "tmkx mei toaster", "tmkx mei BMW", "tmkx mei oven", "tmkx mei cud", "tmkx mei door", "tmkx mei Mango", "tmkx mei OYO", "tmkx mei house", "tmkx mei light", "tmkx mei ratatatatatata", "tmkx mei toaster", "tmkx mei supra", "tmkx mei oven", "tmkx mei table", "tmkx mei door", "tmkx mei balcony", "tmkx mei building", "tmkx mei key", "tmkx mei light" } local function getRandomSlang() if #SLANGS == 0 then return "" end return " " .. SLANGS[math.random(#SLANGS)] end -- Intense Font Mapping local intenseFonts = { a = "â", b = "bç", c = "ç", d = "đ", e = "ê", f = "ƒ", g = "ğ", h = "ĥ", i = "î", j = "ĵ", k = "ķ", l = "ł", m = "mń", n = "ń", o = "ô", p = "p", q = "q", r = "ŕ", s = "ş", t = "ţ", u = "û", v = "v", w = "ŵ", x = "x", y = "ý", z = "ż", A = "Â", B = "BÇ", C = "Ç", D = "Đ", E = "Ê", F = "ƒ", G = "Ğ", H = "Ĥ", I = "Î", J = "Ĵ", K = "Ķ", L = "Ł", M = "MŃ", N = "Ń", O = "Ô", P = "P", Q = "Q", R = "Ŕ", S = "Ş", T = "Ţ", U = "Û", V = "V", W = "Ŵ", X = "X", Y = "Ý", Z = "Ż" } local function applyIntenseFont(text) local result = "" for char in text:gmatch(".") do result = result .. (intenseFonts[char] or char) end return result end -- GUI ROOT local gui = Instance.new("ScreenGui") gui.Name = "AnuV1" gui.Parent = player.PlayerGui local frame = Instance.new("Frame") frame.Size = UDim2.new(0,440,0,560) frame.Position = UDim2.new(0.35,0,0.3,0) frame.BackgroundColor3 = Color3.fromRGB(40,40,40) frame.Active = true frame.Draggable = true frame.Parent = gui -- TITLE local title = Instance.new("TextLabel", frame) title.Size = UDim2.new(1,0,0,30) title.BackgroundColor3 = Color3.fromRGB(60,60,60) title.Text = "ANU V1" title.TextScaled = true title.TextColor3 = Color3.new(1,1,1) title.Position = UDim2.new(0,0,0,0) -- OWNER local ownerLabel = Instance.new("TextLabel", frame) ownerLabel.Size = UDim2.new(1,0,0,20) ownerLabel.Position = UDim2.new(0,20,0,35) ownerLabel.Text = "SCRIPT OWNER COoLk8id94" ownerLabel.TextScaled = true ownerLabel.BackgroundTransparency = 1 ownerLabel.TextColor3 = Color3.fromRGB(200,200,200) ownerLabel.TextXAlignment = Enum.TextXAlignment.Left -- Minimize Button local minimizeBtn = Instance.new("TextButton", title) minimizeBtn.Size = UDim2.new(0,80,0,25) minimizeBtn.Position = UDim2.new(1,-90,0,2) minimizeBtn.Text = "Minimize" minimizeBtn.TextScaled = true minimizeBtn.BackgroundColor3 = Color3.fromRGB(255,0,0) -- Open Script Button local openBtn = Instance.new("TextButton") openBtn.Size = UDim2.new(0,160,0,50) openBtn.Position = UDim2.new(0.4,0,0.5,0) openBtn.Text = "Open ANU V1" openBtn.TextScaled = true openBtn.BackgroundColor3 = Color3.fromRGB(0,200,255) openBtn.Font = Enum.Font.GothamBold openBtn.Visible = false openBtn.Draggable = true openBtn.Parent = gui local hidden = false minimizeBtn.MouseButton1Click:Connect(function() hidden = not hidden frame.Visible = not hidden openBtn.Visible = hidden end) openBtn.MouseButton1Click:Connect(function() hidden = false frame.Visible = true openBtn.Visible = false end) -- FORMAT SELECTOR (upar khule) local formatBtn = Instance.new("TextButton", frame) formatBtn.Size = UDim2.new(1,-40,0,30) formatBtn.Position = UDim2.new(0,20,0,60) formatBtn.Text = "Select Format" formatBtn.TextScaled = true local formatFrame = Instance.new("Frame", frame) formatFrame.Size = UDim2.new(1,-40,0,160) formatFrame.Position = UDim2.new(0,20,0,-100) formatFrame.BackgroundColor3 = Color3.fromRGB(70,70,70) formatFrame.Visible = false local fy = 0 for name, fmt in pairs(FORMATS) do local b = Instance.new("TextButton", formatFrame) b.Size = UDim2.new(1,0,0,26) b.Position = UDim2.new(0,0,0,fy) b.Text = name b.TextScaled = true b.MouseButton1Click:Connect(function() currentFormat = fmt formatBtn.Text = "Format: "..name formatFrame.Visible = false end) fy += 28 end formatBtn.MouseButton1Click:Connect(function() formatFrame.Visible = not formatFrame.Visible end) -- DELAY CONTROLLER local delayFrame = Instance.new("Frame", frame) delayFrame.Size = UDim2.new(1,-40,0,30) delayFrame.Position = UDim2.new(0,20,0,100) delayFrame.BackgroundColor3 = Color3.fromRGB(55,55,55) local delayLabel = Instance.new("TextLabel", delayFrame) delayLabel.Size = UDim2.new(0.5,0,1,0) delayLabel.Position = UDim2.new(0.25,0,0,0) delayLabel.BackgroundTransparency = 1 delayLabel.TextColor3 = Color3.new(1,1,1) delayLabel.TextScaled = true local minusBtn = Instance.new("TextButton", delayFrame) minusBtn.Size = UDim2.new(0.25,0,1,0) minusBtn.Text = "-" minusBtn.TextScaled = true minusBtn.BackgroundColor3 = Color3.fromRGB(180,0,0) local plusBtn = Instance.new("TextButton", delayFrame) plusBtn.Size = UDim2.new(0.25,0,1,0) plusBtn.Position = UDim2.new(0.75,0,0,0) plusBtn.Text = "+" plusBtn.TextScaled = true plusBtn.BackgroundColor3 = Color3.fromRGB(0,180,0) local function updateDelay() delayLabel.Text = "Delay: "..string.format("%.1f", DELAY).."s" end updateDelay() plusBtn.MouseButton1Click:Connect(function() DELAY = math.min(DELAY + 0.5, MAX_DELAY) updateDelay() end) minusBtn.MouseButton1Click:Connect(function() DELAY = math.max(DELAY - 0.5, MIN_DELAY) updateDelay() end) -- Spam Textbox (normal) local boxLabel = Instance.new("TextLabel", frame) boxLabel.Size = UDim2.new(1,-40,0,25) boxLabel.Position = UDim2.new(0,20,0,140) boxLabel.Text = "Spam Message" boxLabel.TextScaled = true boxLabel.BackgroundTransparency = 1 boxLabel.TextColor3 = Color3.new(1,1,1) local box = Instance.new("TextBox", frame) box.Size = UDim2.new(0,240,0,35) box.Position = UDim2.new(0,20,0,170) box.TextScaled = true local startBtn = Instance.new("TextButton", frame) startBtn.Size = UDim2.new(0,70,0,35) startBtn.Position = UDim2.new(0,270,0,170) startBtn.Text = "START" startBtn.BackgroundColor3 = Color3.fromRGB(0,180,0) local stopBtn = Instance.new("TextButton", frame) stopBtn.Size = UDim2.new(0,70,0,35) stopBtn.Position = UDim2.new(0,350,0,170) stopBtn.Text = "STOP" stopBtn.BackgroundColor3 = Color3.fromRGB(180,0,0) -- Independent Textbox (formats wala) local indepLabel = Instance.new("TextLabel", frame) indepLabel.Size = UDim2.new(1,-40,0,25) indepLabel.Position = UDim2.new(0,20,0,220) indepLabel.Text = "Independent Spam" indepLabel.TextScaled = true indepLabel.BackgroundTransparency = 1 indepLabel.TextColor3 = Color3.new(1,1,1) local indepBox = Instance.new("TextBox", frame) indepBox.Size = UDim2.new(0,240,0,35) indepBox.Position = UDim2.new(0,20,0,250) indepBox.TextScaled = true local indepStart = Instance.new("TextButton", frame) indepStart.Size = UDim2.new(0,70,0,35) indepStart.Position = UDim2.new(0,270,0,250) indepStart.Text = "START" indepStart.BackgroundColor3 = Color3.fromRGB(0,180,0) local indepStop = Instance.new("TextButton", frame) indepStop.Size = UDim2.new(0,70,0,35) indepStop.Position = UDim2.new(0,350,0,250) indepStop.Text = "STOP" indepStop.BackgroundColor3 = Color3.fromRGB(180,0,0) -- Intense Textbox (Sirf intense font + Send button) local intenseLabel = Instance.new("TextLabel", frame) intenseLabel.Size = UDim2.new(1,-40,0,25) intenseLabel.Position = UDim2.new(0,20,0,300) intenseLabel.Text = "Intense Text (Send Only)" intenseLabel.TextScaled = true intenseLabel.BackgroundTransparency = 1 intenseLabel.TextColor3 = Color3.new(1,1,1) local intenseBox = Instance.new("TextBox", frame) intenseBox.Size = UDim2.new(0,240,0,35) intenseBox.Position = UDim2.new(0,20,0,330) intenseBox.TextScaled = true intenseBox.PlaceholderText = "Type intense words..." local intenseSend = Instance.new("TextButton", frame) intenseSend.Size = UDim2.new(0,70,0,35) intenseSend.Position = UDim2.new(0,270,0,330) intenseSend.Text = "SEND" intenseSend.BackgroundColor3 = Color3.fromRGB(0,150,255) intenseSend.TextScaled = true -- Intense Send Logic (sirf bhejega, no spam loop) intenseSend.MouseButton1Click:Connect(function() if intenseBox.Text ~= "" then local intenseMsg = applyIntenseFont(intenseBox.Text) channel:SendAsync(intenseMsg) intenseBox.Text = "" -- Clear after send end end) -- Slang Editor local slangFrame = Instance.new("Frame", frame) slangFrame.Size = UDim2.new(1,-40,0,120) slangFrame.Position = UDim2.new(0,20,0,380) slangFrame.BackgroundColor3 = Color3.fromRGB(55,55,55) local slangTitle = Instance.new("TextLabel", slangFrame) slangTitle.Size = UDim2.new(1,0,0,24) slangTitle.Text = "SLANG EDITOR" slangTitle.TextScaled = true slangTitle.BackgroundTransparency = 1 slangTitle.TextColor3 = Color3.new(1,1,1) local slangBox = Instance.new("TextBox", slangFrame) slangBox.Size = UDim2.new(0,260,0,28) slangBox.Position = UDim2.new(0,10,0,35) slangBox.TextScaled = true local addBtn = Instance.new("TextButton", slangFrame) addBtn.Size = UDim2.new(0,100,0,28) addBtn.Position = UDim2.new(0,280,0,35) addBtn.Text = "ADD" addBtn.BackgroundColor3 = Color3.fromRGB(0,180,0) local clearBtn = Instance.new("TextButton", slangFrame) clearBtn.Size = UDim2.new(0,380,0,28) clearBtn.Position = UDim2.new(0,10,0,75) clearBtn.Text = "CLEAR ALL SLANGS" clearBtn.BackgroundColor3 = Color3.fromRGB(180,0,0) addBtn.MouseButton1Click:Connect(function() if slangBox.Text ~= "" then table.insert(SLANGS, slangBox.Text) slangBox.Text = "" end end) clearBtn.MouseButton1Click:Connect(function() SLANGS = {} end) -- Spam Logic for Normal Box local run1 = false local count1 = 0 startBtn.MouseButton1Click:Connect(function() if run1 then return end run1 = true task.spawn(function() while run1 do count1 = count1 + 1 chaosCounter = chaosCounter + 1 channel:SendAsync(currentFormat .. box.Text .. getRandomSlang()) if chaosCounter >= AUTO_CHAOS_TRIGGER then chaosCounter = 0 channel:SendAsync(AUTO_CHAOS_MESSAGE) end if count1 >= AUTO_SPAM_AFTER then count1 = 0 channel:SendAsync(AUTO_SPAM_MESSAGE) end task.wait(DELAY) end end) end) stopBtn.MouseButton1Click:Connect(function() run1 = false end) -- Independent Spam Logic local run2 = false indepStart.MouseButton1Click:Connect(function() if run2 then return end run2 = true task.spawn(function() while run2 do channel:SendAsync(currentFormat .. indepBox.Text) task.wait(DELAY) end end) end) indepStop.MouseButton1Click:Connect(function() run2 = false end) print("ANU V1 Loaded! Intense textbox mein Send button add – sirf intense words bhejega! Demo ready bhai! 🔥")