Sign Up: https://bigbtc.win/?id=39272863 download tampermonkey from google extension. cope and paste this scrypt into "create new scrypt" paste your btc address for facuetpay. File then save // ==UserScript== // @name bigbtc Faucetpay 5 min auto cliam // @namespace http://tampermonkey.net/ // @version 0.3 // @description try to take over the world! // @author Faucetpay script // @match https://bigbtc.win/* // @icon https://www.google.com/s2/favicons?domain=bigbtc.win // @grant none // @license MIT // ==/UserScript== (function() { 'use strict'; // Your code here... var bitcoin = 'your btc addresss'; var isClaimButtonClicked = false; var isLoginButtonClicked = false; setInterval(function() { if ((document.querySelector("#login > input[type=text]")) && (isClaimButtonClicked == false)) { document.querySelector("#login > input[type=text]").value = bitcoin; document.querySelector("#login > input.button").click(); isClaimButtonClicked = true; } else if ((document.querySelector(".h-captcha > iframe").getAttribute("data-hcaptcha-response").length > 0) && (isClaimButtonClicked == false)) { document.querySelector("#claimbutn").click(); isClaimButtonClicked = true; } }, 1000); })();