-------------------------------------------------- -- 🔥 RGB + NAME SYSTEM (UPDATED) -------------------------------------------------- local ReplicatedStorage = game:GetService("ReplicatedStorage") local lplr = game.Players.LocalPlayer local remoteFolder = ReplicatedStorage:FindFirstChild("RE") if remoteFolder then local nameEvent = remoteFolder:FindFirstChild("1RPNam1eTex1t") local colorEvent = remoteFolder:FindFirstChild("1RPNam1eColo1r") -- ✅ UPDATED RP NAME if nameEvent then nameEvent:FireServer("RolePlayName", "⚔️ ASH SPAMMER ⚔️") nameEvent:FireServer("RolePlayBio", "Welcome dear " .. lplr.DisplayName) end if colorEvent then task.spawn(function() local hue = 0 while true do local rgbColor = Color3.fromHSV(hue, 1, 1) colorEvent:FireServer("PickingRPNameColor", rgbColor) colorEvent:FireServer("PickingRPBioColor", rgbColor) hue += 0.01 if hue > 1 then hue = 0 end task.wait(0.5) end end) end end -------------------------------------------------- -- 🔥 LOADING + FINAL BANNER -------------------------------------------------- local Players = game:GetService("Players") local player = Players.LocalPlayer local playerGui = player:WaitForChild("PlayerGui") local loading = Instance.new("ScreenGui", playerGui) local f = Instance.new("Frame", loading) f.Size = UDim2.new(1,0,1,0) f.BackgroundColor3 = Color3.new(0,0,0) f.BackgroundTransparency = 0.4 task.wait(2) local TextChatService = game:GetService("TextChatService") local function sendMessage(msg) if TextChatService.ChatVersion == Enum.ChatVersion.TextChatService then TextChatService.TextChannels.RBXGeneral:SendAsync(msg) else game.ReplicatedStorage.DefaultChatSystemChatEvents.SayMessageRequest:FireServer(msg,"All") end end -- ✅ UPDATED BANNER sendMessage(string.rep("_",165).." ⚔️ ASH SPAM USER DETECTED ⚔️") loading:Destroy() -------------------------------------------------- -- 🎮 PANEL + SYSTEM -------------------------------------------------- local gui = Instance.new("ScreenGui", playerGui) local panel = Instance.new("Frame", gui) panel.Size = UDim2.new(0,420,0,300) panel.Position = UDim2.new(0.5,-210,0.5,-150) panel.BackgroundColor3 = Color3.new(0,0,0) panel.BackgroundTransparency = 0.2 local minBtn = Instance.new("TextButton", panel) minBtn.Size = UDim2.new(0,30,0,30) minBtn.Position = UDim2.new(1,-35,0,5) minBtn.Text = "-" local reopenBtn = Instance.new("TextButton", gui) reopenBtn.Size = UDim2.new(0,100,0,40) reopenBtn.Position = UDim2.new(0,10,1,-50) reopenBtn.Text = "OPEN" reopenBtn.Visible = false minBtn.MouseButton1Click:Connect(function() panel.Visible = false reopenBtn.Visible = true end) reopenBtn.MouseButton1Click:Connect(function() panel.Visible = true reopenBtn.Visible = false end) -------------------------------------------------- -- TEXTBOX -------------------------------------------------- local textbox = Instance.new("TextBox", panel) textbox.Size = UDim2.new(0.6,0,0,40) textbox.Position = UDim2.new(0.05,0,0.1,0) textbox.PlaceholderText = "Enter text..." textbox.TextScaled = true -------------------------------------------------- -- SPAM SYSTEM -------------------------------------------------- local selectedSymbol = "@" local words = { "RAGE","GT7","CQ","ARES","DESK","GARV","LEVI","ASHU","GENIUS","SNIPER", "BOT","TREE","CHAIR","MOBILE","PC","COMPUTER","TAB","IPHONE","EXTREME" } local spamming = false local start = Instance.new("TextButton", panel) start.Size = UDim2.new(0,70,0,40) start.Position = UDim2.new(0.25,0,0.82,0) start.Text = "START" local stop = Instance.new("TextButton", panel) stop.Size = UDim2.new(0,70,0,40) stop.Position = UDim2.new(0.55,0,0.82,0) stop.Text = "STOP" start.MouseButton1Click:Connect(function() if spamming then return end spamming = true task.spawn(function() while spamming do sendMessage(string.rep(selectedSymbol,165).." "..textbox.Text.." TMKX ME "..words[math.random(1,#words)]) task.wait(3) end end) end) stop.MouseButton1Click:Connect(function() spamming = false end)