local ScreenGui = Instance.new("ScreenGui") local Frame = Instance.new("Frame") local Title = Instance.new("TextLabel") local Warning = Instance.new("TextLabel") local Buttons = {} local MinimizeButton = Instance.new("TextButton") local Dragging, DragInput, DragStart, StartPos local Scripts = { function() game:GetService("TextChatService").TextChannels.RBXGeneral:SendAsync("." .. string.rep("\r", 197) .. ".") end, function() while task.wait() do game.Players:Chat("/e le le le le") end end } ScreenGui.Parent = game.CoreGui Frame.Parent = ScreenGui Frame.Size = UDim2.new(0, 200, 0, 180) Frame.Position = UDim2.new(0.5, -100, 0.5, -90) Frame.BackgroundColor3 = Color3.fromRGB(30, 30, 30) Frame.Active = true Frame.Draggable = true Title.Parent = Frame Title.Size = UDim2.new(1, -30, 0, 30) Title.BackgroundColor3 = Color3.fromRGB(0, 0, 0) Title.TextColor3 = Color3.fromRGB(255, 255, 255) Title.Text = "RedTeam" Title.Font = Enum.Font.SourceSansBold Title.TextSize = 20 Title.TextXAlignment = Enum.TextXAlignment.Left Title.Position = UDim2.new(0, 5, 0, 0) MinimizeButton.Parent = Frame MinimizeButton.Size = UDim2.new(0, 25, 0, 25) MinimizeButton.Position = UDim2.new(1, -30, 0, 2) MinimizeButton.BackgroundColor3 = Color3.fromRGB(50, 50, 50) MinimizeButton.TextColor3 = Color3.fromRGB(255, 255, 255) MinimizeButton.Text = "-" MinimizeButton.Font = Enum.Font.SourceSansBold MinimizeButton.TextSize = 18 local Minimized = false MinimizeButton.MouseButton1Click:Connect(function() Minimized = not Minimized for _, button in ipairs(Buttons) do button.Visible = not Minimized end Warning.Visible = not Minimized Frame.Size = Minimized and UDim2.new(0, 200, 0, 30) or UDim2.new(0, 200, 0, 180) end) for i, name in ipairs({"مسح الشات", "حماية الشات"}) do local Button = Instance.new("TextButton") Button.Parent = Frame Button.Size = UDim2.new(1, -10, 0, 40) Button.Position = UDim2.new(0, 5, 0, 35 + (i - 1) * 45) Button.BackgroundColor3 = Color3.fromRGB(50, 50, 50) Button.TextColor3 = Color3.fromRGB(255, 255, 255) Button.Text = name Button.Font = Enum.Font.SourceSansBold Button.TextSize = 18 Button.MouseButton1Click:Connect(Scripts[i]) table.insert(Buttons, Button) end Warning.Parent = Frame Warning.Size = UDim2.new(1, -10, 0, 40) Warning.Position = UDim2.new(0, 5, 0, 125) Warning.BackgroundColor3 = Color3.fromRGB(0, 0, 0) Warning.TextColor3 = Color3.fromRGB(255, 50, 50) Warning.Text = "تحذير حماية الشات فقط تضبط للكلام الروسي" Warning.Font = Enum.Font.SourceSansBold Warning.TextSize = 14 Warning.TextWrapped = true