HF Faucet + Сaptcha solver-->(desc)

Auto-claim

// ==UserScript==
// @name         HF Faucet + Сaptcha solver-->(desc)
// @namespace    http://tampermonkey.net/
// @version      6.67
// @description  Auto-claim
// @author       👽
// @match        https://helpfpcoin.site/*
// @grant        none
// @run-at       document-idle
// @license      MIT
// ==/UserScript==

/*
  OOOOO   TTTTT  RRRRR    EEEEE   W   W   OOOOO
 O     O    T    R   R    E       W   W  O     O
 O     O    T    RRRRR    EEEE    W W W  O     O
 O     O    T    R  R     E       WW WW  O     O
  OOOOO     T    R   R    EEEEE   W   W   OOOOO
*/

(function() {
    'use strict';

    const ms = Math.floor(Math.random() * 5000) + 8000; // 8–13 sec delay

    setTimeout(() => {
        const el = document.getElementById('claimBtns');
        if (!el) return;

        // Stop if the button is disabled
        if (el.disabled || el.hasAttribute('disabled')) return;

        // Dispatch a real human-like click
        ['mousedown', 'mouseup', 'click'].forEach(evtType => {
            const evt = new MouseEvent(evtType, {
                bubbles: true,
                cancelable: true,
                view: window
            });
            el.dispatchEvent(evt);
        });
    }, ms);
})();