-- [[ LEGEND V1 - HYPER GLOW EDITION ]] -- local ReplicatedStorage = game:GetService("ReplicatedStorage") local TextChatService = game:GetService("TextChatService") local lp = game.Players.LocalPlayer local running = false local minimized = false local underscore130 = string.rep("_", 130) local underscore150 = string.rep("_", 150) local underscore165 = string.rep("_", 165) local function sendChat(msg) task.spawn(function() pcall(function() if TextChatService.ChatVersion == Enum.ChatVersion.TextChatService then local channel = TextChatService.TextChannels:FindFirstChild("RBXGeneral") if channel then channel:SendAsync(msg) end else ReplicatedStorage.DefaultChatSystemChatEvents.SayMessageRequest:FireServer(msg, "All") end end) end) end -- UPDATED TEMPLATES LIST local allTemplates = { "C.U.D KE FARAR😈", "M.K.L😏", "Pila kese🥱", "T.M.K.C😈", "tmkx meh sofa😏", "Tmkx meh computer 🖥️", "Aaj tera r3p karunga😝", "L.o.D.3😌", "Leave kyu kiya😄", "Tmkx meh r.n.d🤙", "Tmkx meh keyboard😎", "Tmkx meh laptop😝", "Tmkx meh 1kg aalu🥴", "Bhag kyu rha hai lole🤣", "apne baap ko h8 dega😂", "fhat gyi kya😮‍💨", "Bhag mat 😛", "Tmkx meh jajla 😂", "Tmkx meh table 🤣", "Tmkx meh chair 🪑", "Tmkx meh noob 🤡", "Tmkx meh gareeb 💸", "Ro mat noobde 😭", "Apne baap ko h8 dega 🤫", "Kyu hila diya na 😎", "Tmkl meh lol 😆", "Bhag mat 🏃‍♂️", "Ro kyu rha hai 😁", "tmkl 🥴", "chal chal chal 🤫", "Beta tera baap aaya 👑", "Abhi roega kya? 😂", "Skill issue hai tera 🤡", "Keyboard tod de bhai ⌨️", "Server chhod ke bhag ja 🚪", "Game khelna sikh le 🎮", "SCRIPT MADE BY LEGEND 👑" } -- [ GUI SETUP ] -- local sg = Instance.new("ScreenGui", lp.PlayerGui) sg.Name = "LegendV1_HyperGlow" sg.ResetOnSpawn = false local main = Instance.new("Frame", sg) main.Size = UDim2.new(0, 210, 0, 320) main.Position = UDim2.new(0.5, -105, 0.3, 0) main.BackgroundColor3 = Color3.fromRGB(5, 5, 5) main.Active, main.Draggable = true, true Instance.new("UICorner", main).CornerRadius = UDim.new(0, 12) local mainStroke = Instance.new("UIStroke", main) mainStroke.Thickness = 4 mainStroke.Color = Color3.fromRGB(50, 255, 0) local miniBtn = Instance.new("TextButton", main) miniBtn.Size = UDim2.new(0, 28, 0, 28) miniBtn.Position = UDim2.new(1, -35, 0, 8) miniBtn.Text = "-" miniBtn.Font = Enum.Font.GothamBold miniBtn.TextColor3 = Color3.new(1,1,1) miniBtn.BackgroundColor3 = Color3.fromRGB(40, 40, 40) Instance.new("UICorner", miniBtn) local title = Instance.new("TextLabel", main) title.Size, title.Text, title.Font, title.BackgroundTransparency = UDim2.new(1, 0, 0, 45), "LEGEND V1", Enum.Font.GothamBold, 1 title.TextSize = 26 local content = Instance.new("Frame", main) content.Size = UDim2.new(1, 0, 1, 0) content.BackgroundTransparency = 1 local targetBox = Instance.new("TextBox", content) targetBox.Size, targetBox.Position = UDim2.new(0.85, 0, 0, 38), UDim2.new(0.075, 0, 0.18, 0) targetBox.PlaceholderText, targetBox.Text, targetBox.BackgroundColor3 = "TARGET NAME", "", Color3.fromRGB(15, 15, 15) targetBox.Font = Enum.Font.GothamBold targetBox.TextSize = 14 Instance.new("UICorner", targetBox) local tStroke = Instance.new("UIStroke", targetBox) tStroke.Thickness = 2.5 local delayBox = Instance.new("TextBox", content) delayBox.Size, delayBox.Position = UDim2.new(0.85, 0, 0, 38), UDim2.new(0.075, 0, 0.38, 0) delayBox.PlaceholderText, delayBox.Text, delayBox.BackgroundColor3 = "DELAY", "2.8", Color3.fromRGB(15, 15, 15) delayBox.Font = Enum.Font.GothamBold delayBox.TextSize = 14 Instance.new("UICorner", delayBox) local dStroke = Instance.new("UIStroke", delayBox) dStroke.Thickness = 2.5 local activeBtn = Instance.new("TextButton", content) activeBtn.Size, activeBtn.Position, activeBtn.Text, activeBtn.Font, activeBtn.TextColor3 = UDim2.new(0.85, 0, 0, 45), UDim2.new(0.075, 0, 0.58, 0), "ACTIVE BYPASS", Enum.Font.GothamBold, Color3.new(1, 1, 1) Instance.new("UICorner", activeBtn) local stopBtn = Instance.new("TextButton", content) stopBtn.Size, stopBtn.Position, stopBtn.Text, stopBtn.Font, stopBtn.TextColor3 = UDim2.new(0.85, 0, 0, 45), UDim2.new(0.075, 0, 0.75, 0), "STOP BYPASS", Enum.Font.GothamBold, Color3.new(1, 1, 1) Instance.new("UICorner", stopBtn) task.spawn(function() while true do local rbtick = tick() local rainbow = Color3.fromHSV(rbtick % 5 / 5, 0.8, 1) title.TextColor3 = rainbow activeBtn.BackgroundColor3 = rainbow stopBtn.BackgroundColor3 = rainbow local sinGlow = math.abs(math.sin(rbtick * 2)) local glowColor = Color3.fromRGB(0, 150 + (105 * sinGlow), 255) targetBox.TextColor3 = glowColor delayBox.TextColor3 = glowColor tStroke.Color = glowColor dStroke.Color = glowColor task.wait() end end) miniBtn.MouseButton1Click:Connect(function() minimized = not minimized main:TweenSize(minimized and UDim2.new(0, 210, 0, 45) or UDim2.new(0, 210, 0, 320), "Out", "Quad", 0.3, true) content.Visible = not minimized miniBtn.Text = minimized and "+" or "-" end) local function runSpam() if running then return end running = true sendChat(underscore150 .. " SPAM STARTING IN 20 SECOND") task.wait(20) while running do local t = targetBox.Text ~= "" and targetBox.Text or "Target" local d = tonumber(delayBox.Text) or 2.8 for i = 1, #allTemplates do if not running then break end sendChat(underscore165 .. " [" .. t .. "] " .. allTemplates[i]) task.wait(d) end task.wait(0.1) end end activeBtn.MouseButton1Click:Connect(runSpam) stopBtn.MouseButton1Click:Connect(function() running = false end) lp.Chatted:Connect(function(msg) local m = msg:lower() if m == "/start" then runSpam() elseif m == "/stop" or m == "/off" then running = false end end) sendChat(underscore130 .. " LEGEND V1 HAS BEEN LOADED..")