Advertisement
lotocamion

Unlimited kiddypay Faucet

Nov 22nd, 2022
292
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.25 KB | None | 0 0
  1. // ==UserScript==
  2. // @name Unlimited kiddypay Faucet
  3. // @namespace Claim Free Coin
  4. // @version 1.0
  5. // @description Claim Free Coin
  6. // @author lotocamion
  7. // @match https://unlimited.kiddypay.win/*
  8. // @icon https://www.google.com/s2/favicons?sz=64&domain=kiddypay.win
  9. // @grant none
  10. // ==/UserScript==
  11.  
  12.  
  13.  
  14. //INSTALL THE SCRIPT AND HCAPTCHA SOLVER
  15. //THEN GOTO https://unlimited.kiddypay.win/?r=51 AND LOGIN WITH YOUR FAUCETPAY EMAIL ADDRESS
  16.  
  17. (function() {
  18. 'use strict';
  19.  
  20.  
  21. //CLICK ON CLAIM NOW
  22. setInterval(function() {
  23. if (document.querySelector(".h-captcha > iframe") && document.querySelector(".h-captcha > iframe").getAttribute("data-hcaptcha-response").length > 0) {
  24. document.querySelector("#subbutt").click();
  25. }}, 5000);
  26.  
  27. //CLICK ON UNLOCK FIREWALL
  28. setInterval(function() {
  29. if (document.querySelector(".h-captcha > iframe") && document.querySelector(".h-captcha > iframe").getAttribute("data-hcaptcha-response").length > 0) {
  30. document.querySelector("#content > div > div:nth-child(3) > div > div > div > form > div > button").click();
  31. }}, 5000);
  32.  
  33. //REDIRECT TO TRX FAUCET
  34. setTimeout (() => {
  35. if (document.URL =="https://unlimited.kiddypay.win/")
  36. {window.location.replace("https://unlimited.kiddypay.win/faucet/currency/trx")
  37. }},1000)
  38.  
  39. //REDIRECT TO FEY FAUCET WHEN LIMIT REACHED
  40. setTimeout(function() {
  41. 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.") {
  42. window.location.replace("https://unlimited.kiddypay.win/faucet/currency/fey")
  43. }}, 5000);
  44.  
  45. //CLICK ON GO CLAIM
  46. setInterval (() => {
  47. if(document.querySelector("#content > div > div.row > div > div.media > div > h4 > a")){
  48. document.querySelector("#content > div > div.row > div > div.media > div > h4 > a").click();
  49. }}, 5000);
  50.  
  51. //CLICK ON OK SUCCESS
  52. setInterval (() => {
  53. if(document.querySelector(".swal2-confirm.swal2-styled")){
  54. document.querySelector(".swal2-confirm.swal2-styled").click();
  55. }}, 5000);
  56.  
  57.  
  58.  
  59. })();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement