-------------------------------------------------- -- DESTROYS SERVER (MESSAGE SPAM) -------------------------------------------------- local spamming = false local function destroyServerSpam() if spamming then return end spamming = true while spamming do for _, player in pairs(Players:GetPlayers()) do local gui = Instance.new("ScreenGui") gui.ResetOnSpawn = false gui.Parent = player:WaitForChild("PlayerGui") local frame = Instance.new("Frame") frame.Size = UDim2.new(1,0,1,0) frame.BackgroundColor3 = Color3.fromRGB(0,0,0) frame.BackgroundTransparency = 0.3 frame.Parent = gui local text = Instance.new("TextLabel") text.Size = UDim2.new(1,0,1,0) text.BackgroundTransparency = 1 text.Text = "you are an idiot" text.TextScaled = true text.Font = Enum.Font.GothamBlack text.TextColor3 = Color3.fromRGB(255,0,0) text.Parent = frame end task.wait(0.5) -- speed of spam end end