#Here you go guys. Wish you luck.


▪︎Copy-paste this code in notepad and save it. Then, executive it by making it run as  administrator. You can also use this program as a prank. Enjoy!

 <!DOCTYPE html>

<html lang="en">

<head>

  <meta charset="UTF-8">

  <meta name="viewport" content="width=device-width, initial-scale=1.0">

  <title>CRASHER ROULETTE</title>

  <style>

    body {

      font-family: 'Courier New', Courier, monospace;

      background-color: #000;

      color: #0f0;

      margin: 50px;

    }

    .button {

      padding: 26px 20px;

      font-size: 26px;

      font-family: bold;

      background-color: green;

      color: brown;

      border: none;

      border-radius: 10px;

      cursor: pointer;

      transition: background-color 0.5s;

    }

    .button:hover {

      background-color: red;

    }

    .outcome {

      margin-top: 20px;

    }

    .red {

      color: #f00;

    }

  </style>

</head>

<body>

  <center><h1>《CRASHER ROULETTE》</h1></center>

  <p><center><h2><b>There are 5 empty chambers and 1 loaded chamber in the Smith&Wesson.</b></h3></center>

  <b>◇Play the roulette to test your might, you lose your system dies</b>

  <h4><i>{Click the button to start the game}</i></h4></p>

  <center>By opening this site you agree to accept the CONSEQUENCES</center>

  <br>

  <br>

  

  <center><button class="button" onclick="playGame()">•Pull Trigger</button></center>

  <div class="outcome"></div>

  <script>

    function playGame() {

      const outcome = document.querySelector('.outcome');

      const randomOutcome = Math.random();

      if (randomOutcome < 0.1) {

        outcome.innerHTML = "<p class='red'>Access Denied! System Crash Initiated...<Br> Goodbye, may we meet again.</p>";

        setTimeout(function() {

          window.location.href = "cmd:///C:/Windows/System32/crash.bat";

        }, 3000); // Redirect after 3 seconds

      } else {

        outcome.innerHTML = "<p>processing....<br>Evaluating results...<br>Access Granted! You should appreciate your luck player.<br> may we meet again to test your courage.</p>";

      }

    }

  </script>

</body>

</html>