99Faucet (2) ON

Claim Now waits 2.5 minutes loop

// ==UserScript==
// @name         99Faucet (2) ON
// @namespace    http://tampermonkey.net/
// @version      1.0
// @description  Claim Now waits 2.5 minutes loop
// @author       👽
// @match        https://99faucet.com/faucet
// @grant        none
// @license      MIT
// ==/UserScript==

(function() {
    'use strict';

    // Function to click the claim button after a delay of 15 seconds
    function claimFaucet() {
        setTimeout(function() {
            const claimButton = document.querySelector('button.claim-button');
            if (claimButton) {
                claimButton.click();
                console.log('Claim button clicked!');
            } else {
                console.log('Claim button not found.');
            }

            // After clicking, wait for 2 minutes 30 seconds (150 seconds) before starting over
            setTimeout(claimFaucet, 150000); // 150,000 ms = 2.5 minutes
        }, 15000); // 15 seconds delay before clicking
    }

    // Start the process
    claimFaucet();
})();