-- ARNAV SPAM: THE ULTIMATE COMMAND LIST -- FORMULA: PATTERN -> TEXT -> TMKX ME [OBJ] local lp = game:GetService("Players").LocalPlayer local tcs = game:GetService("TextChatService") local rs = game:GetService("ReplicatedStorage") local players = game:GetService("Players") -- 1. ADMINS local ADMINS = { ["TOTALGAMER2025"] = true, ["SOLKTFL"] = true, ["Viraat_shukla16"] = true, ["parthsarat"] = true, ["Ma5iabaap"] = true, ["Tmkx"] = true, [lp.Name] = true } local active = false local patternStep = 1 local spamSpeed = 1.3 -- 2. 50 OBJECTS local objects = {"PARTH PAPA👑","tractor⚡","Qatar🤡","Ethiopia🌚","Mard💀🙏🏻","QUTUB MINAR☠️","Lenticell🌲","Petrol🔴","GHANTA🤬","AK47💀","Microwave😏","ARNAV KA LUN🌚😱","PARTH KA LUN🤢","GB ROAD🛣️","TOMAN🤬","dudh👾","Desert eagle🥺","Mirror🤢","UMBRELLA☔","Notebook🌚","Glue☠️","ANIL KA LUN🤬","PARTH KA LUN🤬","Desk🌺","Monitor🧑‍💻","MAFIA KA LUN💀😂","MASJID💩","Speaker🐲","sutur murg🐲","Red Criminal👾","FMG KA LUN😠💀","Watch😠","Hat🐲","Brookhaven🏡"," HARSHIL KA LUN🤨🤡","FMG KA LUN😠","Camera","Phone🤬","Tablet🤡","Console","SABKA LUN🥺","LEGEND KA LUN😂","GLUE😱","Heater💀","Blanket😆","Arnav Ki script👨‍💻","Curtain😂","Rug🥶","Clock🌚"} -- 3. THE WALL BUILDER (Pattern -> Text -> Tmkx Me) local function buildWall(msg) local patterns = {"(FMG+FMG)", "B-B", "[R00T-R00T)"} local p = patterns[patternStep] local currentText = " " .. msg local remainingSpace = 195 - #currentText local repeatCount = math.floor(remainingSpace / #p) local wall = string.rep(p, repeatCount) .. currentText patternStep = (patternStep >= 3) and 1 or (patternStep + 1) return wall end -- 4. CHAT SENDER local function chat(msg) task.spawn(function() local ch = tcs:FindFirstChild("RBXGeneral", true) or (tcs:FindFirstChild("TextChannels") and tcs.TextChannels:FindFirstChild("RBXGeneral")) if ch then ch:SendAsync(msg) end local say = rs:FindFirstChild("SayMessageRequest", true) if say then say:FireServer(msg, "All") end end) end -- 5. COMMAND HANDLER (FULL LIST) local function handleCmd(text, sender) local split = text:lower():split(" ") local cmd = split[1] local arg = split[2] -- !give [user] if cmd == "!give" and arg then for _, p in pairs(players:GetPlayers()) do if p.Name:lower():find(arg) then ADMINS[p.Name] = true; chat("GTV V1: Admin Added " .. p.Name) end end -- !start / !stop elseif cmd == "!start" then active = true elseif cmd == "!stop" then active = false -- !sit elseif cmd == "!sit" then if lp.Character and lp.Character:FindFirstChild("Humanoid") then lp.Character.Humanoid.Sit = true end -- !kick [user] (Simulated/Client-side for fun, or actual if you have rank) elseif cmd == "!kick" and arg then for _, p in pairs(players:GetPlayers()) do if p.Name:lower():find(arg) then chat("FMG V1: Attempting to kick " .. p.Name) end end -- !say [msg] elseif cmd == "!say" and arg then chat(text:sub(6)) -- !rj elseif cmd == "!rj" then game:GetService("TeleportService"):Teleport(game.PlaceId, lp) -- !cmds elseif cmd == "!cmds" then chat("!give, !start, !stop, !sit, !kick, !say, !rj") end end for _, p in pairs(players:GetPlayers()) do p.Chatted:Connect(function(m) if ADMINS[p.Name] then handleCmd(m, p) end end) end players.PlayerAdded:Connect(function(p) p.Chatted:Connect(function(m) if ADMINS[p.Name] then handleCmd(m, p) end end) end) -- 6. SPAM LOOP (10S CLOCK DELAY) task.spawn(function() while true do if active then local custom = lp.PlayerGui.FMG_V1_UI.Frame.TextBox.Text local obj = objects[math.random(1, #objects)] -- FORMULA: [Text] TMKX ME [Object] local fullText = custom .. " TMKX ME " .. obj chat(buildWall(fullText)) if obj == "Clock" then task.wait(10) else task.wait(spamSpeed) end end task.wait(0.1) end end) -- 7. GUI SETUP local old = lp.PlayerGui:FindFirstChild("FMG_V1_UI") if old then old:Destroy() end local sg = Instance.new("ScreenGui", lp.PlayerGui); sg.Name = "FMG_V1_UI" local frame = Instance.new("Frame", sg); frame.Name = "Frame" frame.Size = UDim2.new(0, 300, 0, 160); frame.Position = UDim2.new(0.5, -150, 0.4, -80) frame.BackgroundColor3 = Color3.fromRGB(15, 15, 15); frame.Active = true; frame.Draggable = true Instance.new("UICorner", frame) local stroke = Instance.new("UIStroke", frame); stroke.Thickness = 2 task.spawn(function() while task.wait(0.05) do stroke.Color = Color3.fromHSV(tick() % 5 / 5, 0.8, 1) end end) local box = Instance.new("TextBox", frame); box.Name = "TextBox" box.Size = UDim2.new(0.8, 0, 0, 35); box.Position = UDim2.new(0.1, 0, 0.3, 0) box.BackgroundColor3 = Color3.fromRGB(30, 30, 30); box.TextColor3 = Color3.new(1,1,1) box.Text = "ENTER MC NAME"; box.Font = Enum.Font.Gotham; Instance.new("UICorner", box) local btn = Instance.new("TextButton", frame) btn.Size = UDim2.new(0.8, 0, 0, 40); btn.Position = UDim2.new(0.1, 0, 0.65, 0) btn.Text = "START SPAM "; btn.Font = Enum.Font.GothamBold; btn.TextColor3 = Color3.new(1,1,1) btn.BackgroundColor3 = Color3.fromRGB(45, 45, 50); Instance.new("UICorner", btn) btn.MouseButton1Click:Connect(function() active = not active btn.Text = active and "SYSTEM ACTIVE" or "START SPAMMING" btn.BackgroundColor3 = active and Color3.fromRGB(130, 0, 0) or Color3.fromRGB(45, 45, 50) end)-- 🌺💫 ARNAV V1 RAINBOW TITLE 🌺💫 local title = Instance.new("TextLabel") title.Name = "Title" title.Parent = frame title.Size = UDim2.new(1, 0, 0, 40) title.Position = UDim2.new(0, 0, 0, 5) title.BackgroundTransparency = 1 title.Text = "⚡🔥 SCRIPT BY PARTH ARNAV⚡🔥" title.TextScaled = true title.Font = Enum.Font.GothamBold title.TextStrokeTransparency = 0 title.TextStrokeColor3 = Color3.fromRGB(0,0,0) -- 🌈 Rainbow Animation task.spawn(function() while true do for h = 0, 1, 0.01 do title.TextColor3 = Color3.fromHSV(h, 1, 1) task.wait(0.02) end end end)--// SERVICES local Players = game:GetService("Players") local TextChatService = game:GetService("TextChatService") local player = Players.LocalPlayer --// MESSAGE local MESSAGE = "_____________________________________________________________________________________________________🥶ARNAV,☠️ PARTH,☠️LEGEND,⚡FMG🥶🔥 PAPA KO NAMASTE🙏🏻 !!" --// SEND CHAT FUNCTION local function sendChat(msg) if TextChatService.ChatVersion == Enum.ChatVersion.TextChatService then -- New Roblox Chat local channel = TextChatService.TextChannels.RBXGeneral if channel then channel:SendAsync(msg) end else -- Old Roblox Chat game:GetService("ReplicatedStorage") .DefaultChatSystemChatEvents .SayMessageRequest :FireServer(msg, "All") end end --// EXECUTE ON SCRIPT RUN sendChat(MESSAGE)