0.00000002BTC Every Five Mins


SUBMITTED BY: PimpDaddy

DATE: Feb. 3, 2022, 12:03 a.m.

FORMAT: Text only

SIZE: 1.4 kB

HITS: 493

  1. Sign Up: https://bigbtc.win/?id=39272863
  2. download tampermonkey from google extension.
  3. cope and paste this scrypt into "create new scrypt"
  4. paste your btc address for facuetpay.
  5. File then save
  6. // ==UserScript==
  7. // @name bigbtc Faucetpay 5 min auto cliam
  8. // @namespace http://tampermonkey.net/
  9. // @version 0.3
  10. // @description try to take over the world!
  11. // @author Faucetpay script
  12. // @match https://bigbtc.win/*
  13. // @icon https://www.google.com/s2/favicons?domain=bigbtc.win
  14. // @grant none
  15. // @license MIT
  16. // ==/UserScript==
  17. (function() {
  18. 'use strict';
  19. // Your code here...
  20. var bitcoin = 'your btc addresss';
  21. var isClaimButtonClicked = false;
  22. var isLoginButtonClicked = false;
  23. setInterval(function() {
  24. if ((document.querySelector("#login > input[type=text]")) && (isClaimButtonClicked == false)) {
  25. document.querySelector("#login > input[type=text]").value = bitcoin;
  26. document.querySelector("#login > input.button").click();
  27. isClaimButtonClicked = true;
  28. } else if ((document.querySelector(".h-captcha > iframe").getAttribute("data-hcaptcha-response").length > 0) && (isClaimButtonClicked == false)) {
  29. document.querySelector("#claimbutn").click();
  30. isClaimButtonClicked = true;
  31. }
  32. }, 1000);
  33. })();

comments powered by Disqus