--====================================================================-- -- SKIBI DEFENSE MACRO HUB [AUTOEXEC & MOBILE OPTIMIZED] -- -- Modified & Enhanced by: A_smart_man_official (via AI) -- -- Version: 1.1 [LOW QUALITY BUTTON ADDED] -- --====================================================================-- if not game:IsLoaded() then game.Loaded:Wait() end task.wait(7) local Players = game:GetService("Players") local player = Players.LocalPlayer or Players.PlayerAdded:Wait() -- Функция звукового и текстового оповещения local function notifyLoad() local sound = Instance.new("Sound") sound.SoundId = "rbxassetid://1053246915" sound.Volume = 1 sound.Parent = game:GetService("SoundService") sound:Play() game:GetService("StarterGui"):SetCore("SendNotification", { Title = "Макрос Запущен! ✅", Text = "Кнопка Low Quality успешно добавлена на экран.", Duration = 5 }) end -- Функция самого Low Quality мода local function applyLowQuality() settings().Rendering.QualityLevel = Enum.QualityLevel.Level01 game:GetService("Lighting").GlobalShadows = false for _, v in pairs(game:GetDescendants()) do if v:IsA("Part") or v:IsA("UnionOperation") or v:IsA("MeshPart") then v.Material = Enum.Material.SmoothPlastic elseif v:IsA("ParticleEmitter") or v:IsA("Trail") or v:IsA("Smoke") or v:IsA("Sparkles") then v.Enabled = false end end end -- Создание кнопки на экране игрока local function createLQButton() local ScreenGui = Instance.new("ScreenGui") local TextButton = Instance.new("TextButton") local UICorner = Instance.new("UICorner") ScreenGui.Parent = game:GetService("CoreGui") ScreenGui.Name = "SmartManOptimization" TextButton.Parent = ScreenGui TextButton.BackgroundColor3 = Color3.fromRGB(40, 40, 40) TextButton.BackgroundTransparency = 0.3 TextButton.Position = UDim2.new(0.02, 0, 0.4, 0) TextButton.Size = UDim2.new(0, 110, 0, 40) TextButton.Font = Enum.Font.SourceSansBold TextButton.Text = "Low Quality" TextButton.TextColor3 = Color3.fromRGB(255, 255, 255) TextButton.TextSize = 16 UICorner.CornerRadius = UDim.new(0, 8) UICorner.Parent = TextButton TextButton.MouseButton1Click:Connect(function() pcall(applyLowQuality) TextButton.Text = "Оптимизировано! ✨" TextButton.BackgroundColor3 = Color3.fromRGB(0, 150, 0) task.wait(2) TextButton:Destroy() end) end pcall(createLQButton) notifyLoad() -- ТВОЯ ИСТИННАЯ ССЫЛКА НА МАКРОС (ПРОТИВ ВЫЛЕТОВ): loadstring(game:HttpGet("https://rawscripts.net/raw/ASTRO-COLLOSSAL-SPEAKERGUY-Skibi-Defense-Skibidi-Defense-Macro-Hub-or-KEYLESS-228557"))()