-- ARNAV SPAM: THE ULTIMATE COMMAND LIST -- FORMULA: PATTERN -> TEXT -> TMKX MA [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, ["greninjaYT_07"] = 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 = {"Burger","Pizza","Qatar","Ethiopia","Fridge","Laptop","Toaster","Calculator","Socks","Blender","Microwave","Spoon","Table","Chair","Lamp","Charger","Battery","Mirror","Pencil","Notebook","Glue","Scissors","Ruler","Desk","Monitor","Keyboard","Mouse","Speaker","Remote","Wallet","Keys","Watch","Hat","Jacket","Backpack","Umbrella","Camera","Phone","Tablet","Console","Controller","Headset","Fan","Heater","Blanket","Pillow","Curtain","Rug","Clock"} -- 3. THE WALL BUILDER (Pattern -> Text -> Tmkx Ma) local function buildWall(msg) local patterns = {"X", "O", "X"} 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("GTV 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.GTV_V1_UI.Frame.TextBox.Text local obj = objects[math.random(1, #objects)] -- FORMULA: [Text] TMKX ME [Object] local fullText = custom .. " TMKXX 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("GTV_V1_UI") if old then old:Destroy() end local sg = Instance.new("ScreenGui", lp.PlayerGui); sg.Name = "GTV_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 = "SVG"; 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 ARNAV V1"; 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 ARNAV V1" 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 = "πŸŒΊπŸ’«ARNAV V1πŸŒΊπŸ’«" 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)-- 🌺⚑ ARNAV V2 FULL SCREEN LOADING (NO BLUR) ⚑🌺 local Players = game:GetService("Players") local RunService = game:GetService("RunService") local player = Players.LocalPlayer local PlayerGui = player:WaitForChild("PlayerGui") -------------------------------------------------- -- GUI Setup -------------------------------------------------- local gui = Instance.new("ScreenGui") gui.Name = "ArnavLoadingV2" gui.Parent = PlayerGui gui.ResetOnSpawn = false gui.IgnoreGuiInset = true -- βœ… Fullscreen Proper -------------------------------------------------- -- Full Screen Background (NO BLUR) -------------------------------------------------- local bg = Instance.new("Frame") bg.Parent = gui bg.Size = UDim2.new(1, 0, 1, 0) bg.Position = UDim2.new(0, 0, 0, 0) bg.BackgroundColor3 = Color3.fromRGB(0, 0, 0) bg.BackgroundTransparency = 0 -- βœ… Solid Black (No Blur) -------------------------------------------------- -- Center Box -------------------------------------------------- local box = Instance.new("Frame") box.Parent = bg box.Size = UDim2.new(0, 520, 0, 260) box.AnchorPoint = Vector2.new(0.5, 0.5) box.Position = UDim2.new(0.5, 0, 0.5, 0) box.BackgroundColor3 = Color3.fromRGB(25, 25, 25) box.BorderSizePixel = 0 local corner = Instance.new("UICorner") corner.CornerRadius = UDim.new(0, 25) corner.Parent = box -------------------------------------------------- -- Rainbow Title -------------------------------------------------- local title = Instance.new("TextLabel") title.Parent = box title.Size = UDim2.new(1, 0, 0, 80) title.Position = UDim2.new(0, 0, 0, 25) title.BackgroundTransparency = 1 title.Text = "🌺⚑ LOADING ARNAV V2 ⚑🌺" title.Font = Enum.Font.GothamBlack title.TextScaled = true -------------------------------------------------- -- Loading Text -------------------------------------------------- local loadingText = Instance.new("TextLabel") loadingText.Parent = box loadingText.Size = UDim2.new(1, 0, 0, 35) loadingText.Position = UDim2.new(0, 0, 0.78, 0) loadingText.BackgroundTransparency = 1 loadingText.Text = "Loading... Please Wait ⏳" loadingText.TextColor3 = Color3.fromRGB(200, 200, 200) loadingText.Font = Enum.Font.Gotham loadingText.TextScaled = true -------------------------------------------------- -- Progress Bar Background -------------------------------------------------- local barBG = Instance.new("Frame") barBG.Parent = box barBG.Size = UDim2.new(0.85, 0, 0, 20) barBG.Position = UDim2.new(0.075, 0, 0.62, 0) barBG.BackgroundColor3 = Color3.fromRGB(70, 70, 70) barBG.BorderSizePixel = 0 local barCorner = Instance.new("UICorner") barCorner.CornerRadius = UDim.new(0, 12) barCorner.Parent = barBG -------------------------------------------------- -- Progress Fill -------------------------------------------------- local barFill = Instance.new("Frame") barFill.Parent = barBG barFill.Size = UDim2.new(0, 0, 1, 0) barFill.BackgroundColor3 = Color3.fromRGB(255, 0, 255) barFill.BorderSizePixel = 0 local fillCorner = Instance.new("UICorner") fillCorner.CornerRadius = UDim.new(0, 12) fillCorner.Parent = barFill -------------------------------------------------- -- 🌈 Rainbow Effect -------------------------------------------------- local hue = 0 local rainbowConnection rainbowConnection = RunService.RenderStepped:Connect(function() hue = hue + 0.004 if hue > 1 then hue = 0 end title.TextColor3 = Color3.fromHSV(hue, 1, 1) barFill.BackgroundColor3 = Color3.fromHSV(hue, 1, 1) end) -------------------------------------------------- -- Loading Animation -------------------------------------------------- for i = 1, 100 do barFill.Size = UDim2.new(i/100, 0, 1, 0) task.wait(0.03) end loadingText.Text = "Loaded Successfully βœ…" task.wait(1) -------------------------------------------------- -- Cleanup -------------------------------------------------- if rainbowConnection then rainbowConnection:Disconnect() end gui:Destroy()