您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
pain sniper is the newest one
// ==UserScript== // @name (OLD)UGC Sniper (pain)(for roblox) // @namespace http://tampermonkey.net/ // @version 1.1 // @description pain sniper is the newest one // @author fishcat#2431 // @match https://www.roblox.com/catalog/* // @match https://www.roblox.com/bundles/* // @icon https://www.google.com/s2/favicons?sz=64&domain=roblox.com // @grant none // @license GNU General Public License v3.0 // ==/UserScript== function snipeitem() { const buttons = document.querySelectorAll('button'); const buyButton = Array.from(buttons).find((button) => button.textContent === 'Buy'); buyButton.click(); setTimeout(() => { const buttons2 = document.querySelectorAll('button'); const buyButton2 = Array.from(buttons2).find((button) => button.textContent === 'Get Now'); buyButton2.click(); window.location.reload(); /*setTimeout(() => { const buttons3 = document.querySelectorAll('button'); const buyButton3 = Array.from(buttons3).find((button) => button.textContent === 'Not Now'); buyButton3.click(); setTimeout(snipeitem, 1000); }, 500); window.location.reload()*/ }, 500); } var intv = setInterval(function() { var elems = document.getElementsByClassName("btn-growth-lg btn-fixed-width-lg") if(elems.length < 1){ return false; } //when element is found, clear the interval.by fishcat#2431 clearInterval(intv); for (var i = 0, len = elems.length; i < len; i++){ elems[i].value = ""; console.log("by fishcat#2431") snipeitem(); } }, 100);