local function loadDefendScript() local githubURL = "https://raw.githubusercontent.com/blegbot1/script-game-Defend-Your-Country/main/Defend%20Your%20Country.lua" print("👑 Загрузка ELITE_HUB Defend Your Country...") local success, errorMessage = pcall(function() local scriptContent = game:HttpGet(githubURL, true) if scriptContent and #scriptContent > 100 then loadstring(scriptContent)() return true else error("Скрипт пустой или не загружен") end end) if success then print("✅ ELITE_HUB Defend Your Country успешно загружен!") print("🎮 Скрипт активирован") else print("❌ Ошибка загрузки: " .. tostring(errorMessage)) print("⚠️ Проверьте ссылку и доступность репозитория") end end -- Запускаем loadDefendScript()