79833888

Date: 2025-11-30 12:33:21
Score: 0.5
Natty:
Report link
<!DOCTYPE html>
<html>
<head>
    <title>Rage Mode Game 😈</title>
    <style>
        body {
            background: #fff3f3;
            font-family: Arial;
            overflow: hidden;
            text-align: center;
        }
        h1 {
            margin-top: 30px;
        }
        #btn {
            position: absolute;
            padding: 15px 25px;
            background: #ff0000;
            color: white;
            border: none;
            border-radius: 10px;
            font-size: 18px;
        }
        #msg {
            position: fixed;
            bottom: 20px;
            width: 100%;
            font-size: 22px;
            color: #ff0022;
        }
    </style>
</head>
<body>

<h1>Click the Button… if you can 😈</h1>
<button id="btn">CLICK!</button>
<div id="msg"></div>

<script>
const btn = document.getElementById("btn");
const msg = document.getElementById("msg");

const insults = [
    "Bro missed πŸ’€",
    "Too slow πŸ˜‚",
    "My grandma is faster 😭",
    "You almost had it… SIKE!",
    "Skill issue detected 😹",
    "Try harder lil bro 🀏",
];

function moveButton() {
    const x = Math.random() * (window.innerWidth - 150);
    const y = Math.random() * (window.innerHeight - 150);
    btn.style.left = x + "px";
    btn.style.top = y + "px";

    // Random button size
    const size = Math.random() * 40 + 20;
    btn.style.fontSize = size + "px";

    // Random message
    msg.textContent = insults[Math.floor(Math.random() * insults.length)];
}

btn.addEventListener("mouseover", moveButton);

btn.addEventListener("click", () => {
    alert("IMPOSSIBLE?? HOW DID YOU CLICK THAT 😨πŸ”₯");
});
</script>

</body>
</html>
Reasons:
  • Blacklisted phrase (1): πŸ˜‚
  • Long answer (-1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: MARVEL GAMING YT