roblox-executor-oasis / download.html
CheckingDelta's picture
Make it a bit like downloading an executor
0046eb8 verified
<!DOCTYPE html>
<html lang="en" class="dark">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Download Roblox Executor | Roblox Executor Oasis</title>
<link rel="stylesheet" href="style.css">
<script src="https://cdn.tailwindcss.com"></script>
<script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
<script src="https://unpkg.com/feather-icons"></script>
</head>
<body class="bg-gray-900 text-gray-100 min-h-screen">
<custom-navbar></custom-navbar>
<main class="container mx-auto px-4 py-12">
<section class="max-w-4xl mx-auto text-center">
<h1 class="text-4xl md:text-5xl font-bold mb-6 bg-gradient-to-r from-primary-500 to-secondary-500 bg-clip-text text-transparent">Download Executor</h1>
<p class="text-lg text-gray-400 max-w-2xl mx-auto mb-12">Get the most powerful Roblox executor with our free key system</p>
<div class="bg-gray-800 rounded-xl p-8 shadow-lg">
<div class="grid grid-cols-1 md:grid-cols-2 gap-8">
<div class="bg-gray-700 rounded-lg p-6">
<div class="text-primary-500 mb-4">
<i data-feather="download" class="w-12 h-12 mx-auto"></i>
</div>
<h3 class="font-bold text-xl mb-4">Windows Executor</h3>
<p class="text-gray-400 mb-6">For Windows 10/11 (64-bit only)</p>
<button data-download class="w-full bg-gradient-to-r from-primary-500 to-secondary-500 text-white font-bold py-3 px-6 rounded-lg hover:scale-105 transition-transform">
Download (35.2 MB)
</button>
<div class="mt-4 text-sm text-gray-500 flex items-center justify-center">
<i data-feather="shield" class="mr-2"></i> No virus guaranteed
</div>
</div>
<div class="bg-gray-700 rounded-lg p-6">
<div class="text-primary-500 mb-4">
<i data-feather="smartphone" class="w-12 h-12 mx-auto"></i>
</div>
<h3 class="font-bold text-xl mb-4">Mobile Version (Beta)</h3>
<p class="text-gray-400 mb-6">For Android devices</p>
<button data-download class="w-full bg-gradient-to-r from-primary-500 to-secondary-500 text-white font-bold py-3 px-6 rounded-lg hover:scale-105 transition-transform">
Download APK (28.7 MB)
</button>
<div class="mt-4 text-sm text-gray-500 flex items-center justify-center">
<i data-feather="alert-triangle" class="mr-2"></i> Experimental version
</div>
</div>
</div>
<div class="mt-12 text-left">
<h3 class="text-xl font-bold mb-4 flex items-center">
<i data-feather="info" class="text-primary-500 mr-2"></i>
Installation Guide
</h3>
<ol class="list-decimal list-inside space-y-2 text-gray-300">
<li>Download the appropriate version for your device</li>
<li>Run the installer (Windows) or install the APK (Android)</li>
<li>Open the executor and generate your free key</li>
<li>Attach to Roblox and start executing scripts</li>
</ol>
</div>
</div>
</section>
</main>
<custom-footer></custom-footer>
<script src="components/navbar.js"></script>
<script src="components/footer.js"></script>
<script src="script.js"></script>
<script>feather.replace();</script>
</body>
</html>