-- Tiny Rounded Lag GUI by c00lkids103 (FE Compatible) local Players = game:GetService("Players") local player = Players.LocalPlayer local playerGui = player:WaitForChild("PlayerGui") local screenGui = Instance.new("ScreenGui") screenGui.Name = "TinyLagGUI" screenGui.ResetOnSpawn = false screenGui.Parent = playerGui -- Main tiny black frame with round corners local mainFrame = Instance.new("Frame") mainFrame.Name = "MainFrame" mainFrame.Size = UDim2.new(0, 220, 0, 140) mainFrame.Position = UDim2.new(0.5, -110, 0.5, -70) mainFrame.BackgroundColor3 = Color3.fromRGB(0, 0, 0) mainFrame.BorderSizePixel = 0 mainFrame.BackgroundTransparency = 0.05 mainFrame.Active = true mainFrame.Draggable = true mainFrame.Parent = screenGui local corner = Instance.new("UICorner") corner.CornerRadius = UDim.new(0, 16) corner.Parent = mainFrame -- Title local title = Instance.new("TextLabel") title.Size = UDim2.new(1, -50, 0, 35) title.Position = UDim2.new(0, 15, 0, 8) title.BackgroundTransparency = 1 title.Text = "lag script made by c00lkids103" title.TextColor3 = Color3.fromRGB(255, 255, 255) title.TextScaled = true title.Font = Enum.Font.GothamBold title.TextXAlignment = Enum.TextXAlignment.Left title.Parent = mainFrame -- Lag Button local lagButton = Instance.new("TextButton") lagButton.Size = UDim2.new(0.85, 0, 0, 38) lagButton.Position = UDim2.new(0.075, 0, 0.42, 0) lagButton.BackgroundColor3 = Color3.fromRGB(30, 30, 30) lagButton.Text = "LAG SERVER" lagButton.TextColor3 = Color3.fromRGB(255, 60, 60) lagButton.TextScaled = true lagButton.Font = Enum.Font.GothamBold lagButton.Parent = mainFrame local lagCorner = Instance.new("UICorner") lagCorner.CornerRadius = UDim.new(0, 12) lagCorner.Parent = lagButton -- Close Button local closeBtn = Instance.new("TextButton") closeBtn.Size = UDim2.new(0, 26, 0, 26) closeBtn.Position = UDim2.new(1, -32, 0, 8) closeBtn.BackgroundColor3 = Color3.fromRGB(220, 20, 20) closeBtn.Text = "✕" closeBtn.TextColor3 = Color3.fromRGB(255, 255, 255) closeBtn.TextScaled = true closeBtn.Font = Enum.Font.GothamBold closeBtn.Parent = mainFrame local closeCorner = Instance.new("UICorner") closeCorner.CornerRadius = UDim.new(0, 8) closeCorner.Parent = closeBtn -- Discord info local discordLabel = Instance.new("TextLabel") discordLabel.Size = UDim2.new(0.9, 0, 0, 20) discordLabel.Position = UDim2.new(0.05, 0, 0.78, 0) discordLabel.BackgroundTransparency = 1 discordLabel.Text = "discord copied" discordLabel.TextColor3 = Color3.fromRGB(100, 200, 255) discordLabel.TextScaled = true discordLabel.Font = Enum.Font.Gotham discordLabel.Parent = mainFrame -- Auto copy Discord setclipboard("https://discord.gg/AeuSH2EQK") -- FE-safe lag function (client-side stress) local function lagServer() print("Lagging server (FE mode)...") spawn(function() for i = 1, 400 do local part = Instance.new("Part") part.Size = Vector3.new(4, 4, 4) part.Position = Vector3.new(math.random(-250, 250), 30 + i * 1.5, math.random(-250, 250)) part.Anchored = false part.CanCollide = false part.Transparency = 0.7 part.Parent = workspace if i % 50 == 0 then task.wait() -- prevent client freeze end end end) end -- Button connections lagButton.MouseButton1Click:Connect(lagServer) closeBtn.MouseButton1Click:Connect(function() screenGui:Destroy() end) print("Tiny Rounded Lag GUI loaded by c00lkids103 (FE)") print("Discord link copied to clipboard!")