0% found this document useful (0 votes)
58 views2 pages

Texto 3

Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
58 views2 pages

Texto 3

Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 2

<!

DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>AIMBOT Free Fire</title>
<style>
body {
background-color: #1a1a1a;
color: #00FFFF;
font-family: Arial, sans-serif;
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
margin: 0;
padding: 0;
}
.panel-container {
background-color: rgba(0, 0, 0, 0.8);
padding: 30px;
border-radius: 10px;
box-shadow: 0 0 20px rgba(0, 255, 255, 0.6);
width: 90%;
max-width: 400px;
text-align: center;
}
h1 {
color: #00FFFF;
text-shadow: 1px 1px 5px #000;
}
button {
width: 100%;
margin: 15px 0;
padding: 15px;
border: none;
border-radius: 5px;
background: linear-gradient(45deg, #0066FF, #0033CC);
color: white;
font-size: 1.1em;
cursor: pointer;
transition: background 0.3s ease;
}
button:hover {
background: linear-gradient(45deg, #0033CC, #0066FF);
}
.slider-container {
margin: 20px 0;
}
.slider {
width: 100%;
appearance: none;
height: 10px;
border-radius: 5px;
background: #333;
outline: none;
}
.slider::-webkit-slider-thumb {
appearance: none;
width: 20px;
height: 20px;
border-radius: 50%;
background: #00FFFF;
cursor: pointer;
}
.credits {
font-size: 0.8em;
color: #00FFFF;
margin-top: 20px;
}
</style>
</head>
<body>
<div class="panel-container">
<h1>AIMBOT Free Fire</h1>

<div class="slider-container">
<label for="sensitivity">Sensibilidad del Aimbot:</label>
<input type="range" id="sensitivity" min="0" max="100" value="50"
class="slider">
<p id="sensitivity-value">50</p>
</div>

<button id="activate-aimbot">Activar Aimbot</button>


<button id="deactivate-aimbot">Desactivar Aimbot</button>

<div class="credits">
Creado por @TuNombre - iPhone Ready
</div>
</div>

<script>
const sensitivitySlider = document.getElementById('sensitivity');
const sensitivityValue = document.getElementById('sensitivity-value');

sensitivitySlider.oninput = function() {
sensitivityValue.textContent = this.value;
}

document.getElementById('activate-aimbot').addEventListener('click',
function() {
alert('Aimbot Activado');
});

document.getElementById('deactivate-aimbot').addEventListener('click',
function() {
alert('Aimbot Desactivado');
});
</script>
</body>
</html>

You might also like