Test

Do not install

  1. // ==UserScript==
  2. // @name Test
  3. // @namespace chrome-extension://dhdgffkkebhmkfjojejmpbldmpobfkfo/options.html#nav=dashboard
  4. // @version 0.2 ALPHA (licensed)
  5. // @description Do not install
  6. // @author HackmasterDMDTM
  7. // @match https://www.roblox.com/upgrades/redeem?ap=470&pm=redeemCard&selectedUpsellProductId=0
  8. // @grant none
  9. // @license Attribution-NonCommercial-NoDerivatives 4.0 International (CC BY-NC-ND 4.0)
  10. // ==/UserScript==
  11.  
  12. (function() {
  13. 'use strict';
  14.  
  15. alert("Click the button to start the Codebreaker. Thank you for using the Robux Codebreaker!");
  16. var nums = [1, 2, 3, 4, 5, 6, 7, 8, 9, 0];
  17.  
  18. function main() {
  19. var key = ((nums[Math.floor(Math.random() * nums.length)].toString()) + (Math.floor((Math.random() * 10)).toString()) + (Math.floor((Math.random() * 10)).toString()));
  20. var key2 = ((Math.floor((Math.random() * 10)).toString()) + (Math.floor((Math.random() * 10)).toString()) + (Math.floor((Math.random() * 10)).toString()));
  21. var key3 = ((Math.floor((Math.random() * 10)).toString()) + (Math.floor((Math.random() * 10)).toString()) + (Math.floor((Math.random() * 10)).toString()));
  22. var key4 = ((Math.floor((Math.random() * 10)).toString()) + (Math.floor((Math.random() * 10)).toString()) + (Math.floor((Math.random() * 10)).toString()));
  23. var code = (key + " " + key2 + " " + key3 + " " + key4);
  24. document.getElementById("pin").value = code;
  25. document.getElementsByTagName('form')[0].submit();
  26. }
  27. setInterval(function() {
  28. main();
  29. }, 2);
  30. })();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址