Made in Trinidad - https://ouo.io/i5xxMs9
// ==UserScript==
// @name Waterfall Money : Auto Faucet
// @namespace waterfall.money.faucet
// @version 1.1
// @description Made in Trinidad - https://ouo.io/i5xxMs9
// @author stealtosvra
// @match https://waterfall.money/*
// @icon https://www.google.com/s2/favicons?sz=64&domain=waterfall.money
// @grant none
// @license MIT
// ==/UserScript==
(function() {
'use strict';
function hCaptcha() {return grecaptcha && grecaptcha.getResponse().length !== 0;}
setInterval(() => {if (hCaptcha()) {if (document.querySelector("button[type='submit']")) {document.querySelector("button[type='submit']").click();}}}, 5000);
function refreshPage() {window.location.reload();}setInterval(refreshPage, 630000);
})();