Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // ==UserScript==
- // @name Unlimited kiddypay Faucet
- // @namespace Claim Free Coin
- // @version 1.0
- // @description Claim Free Coin
- // @author lotocamion
- // @match https://unlimited.kiddypay.win/*
- // @icon https://www.google.com/s2/favicons?sz=64&domain=kiddypay.win
- // @grant none
- // ==/UserScript==
- //INSTALL THE SCRIPT AND HCAPTCHA SOLVER
- //THEN GOTO https://unlimited.kiddypay.win/?r=51 AND LOGIN WITH YOUR FAUCETPAY EMAIL ADDRESS
- (function() {
- 'use strict';
- //CLICK ON CLAIM NOW
- setInterval(function() {
- if (document.querySelector(".h-captcha > iframe") && document.querySelector(".h-captcha > iframe").getAttribute("data-hcaptcha-response").length > 0) {
- document.querySelector("#subbutt").click();
- }}, 5000);
- //CLICK ON UNLOCK FIREWALL
- setInterval(function() {
- if (document.querySelector(".h-captcha > iframe") && document.querySelector(".h-captcha > iframe").getAttribute("data-hcaptcha-response").length > 0) {
- document.querySelector("#content > div > div:nth-child(3) > div > div > div > form > div > button").click();
- }}, 5000);
- //REDIRECT TO TRX FAUCET
- setTimeout (() => {
- if (document.URL =="https://unlimited.kiddypay.win/")
- {window.location.replace("https://unlimited.kiddypay.win/faucet/currency/trx")
- }},1000)
- //REDIRECT TO FEY FAUCET WHEN LIMIT REACHED
- setTimeout(function() {
- if ((document.URL =="https://unlimited.kiddypay.win/faucet/currency/trx") && document.querySelector("#content > div > div.row > div > div.alert.alert-danger.text-center").innerText == "Daily claim limit for this coin reached, please comeback again tomorrow.") {
- window.location.replace("https://unlimited.kiddypay.win/faucet/currency/fey")
- }}, 5000);
- //CLICK ON GO CLAIM
- setInterval (() => {
- if(document.querySelector("#content > div > div.row > div > div.media > div > h4 > a")){
- document.querySelector("#content > div > div.row > div > div.media > div > h4 > a").click();
- }}, 5000);
- //CLICK ON OK SUCCESS
- setInterval (() => {
- if(document.querySelector(".swal2-confirm.swal2-styled")){
- document.querySelector(".swal2-confirm.swal2-styled").click();
- }}, 5000);
- })();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement