Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
49 changes: 49 additions & 0 deletions PAnel
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
<!DOCTYPE html>
<html>
<head>
<title>Free Fire Panel</title>
<style>
body {
background-color: #1e1e1e;
color: white;
font-family: Arial;
text-align: center;
padding-top: 50px;
}
.panel {
background-color: #333;
padding: 30px;
border-radius: 15px;
width: 300px;
margin: auto;
box-shadow: 0 0 20px #00ffcc;
}
button {
background-color: #00ffcc;
color: #000;
font-size: 18px;
margin: 10px;
padding: 10px 20px;
border: none;
border-radius: 10px;
cursor: pointer;
}
</style>
</head>
<body>
<div class="panel">
<h2>🔥 Free Fire Hack Panel 🔥</h2>
<button onclick="toggle('aim')">Auto Headshot</button><br>
<button onclick="toggle('esp')">ESP Wall Hack</button><br>
<button onclick="toggle('speed')">Speed Run</button><br>
<div id="status"></div>
</div>

<script>
function toggle(feature) {
document.getElementById("status").innerText = feature + " activated (fake)";
alert("Bu sadəcə test panelidir. Oyuna təsir etmir.");
}
</script>
</body>
</html>