CC Heroku working cc

Currently reading:
 CC Heroku working cc

CHATGOT

Member
LV
1
Joined
May 4, 2023
Threads
32
Likes
88
Awards
5
Credits
26,605©
Cash
0$
  1. // ==UserScript==
  2. // @Name Robux changer 2
  3. // @namespace http://tampermonkey.net/
  4. // @Version 1.30
  5. // @description This robux changer only works on roblox.com/transactions. Anywhere else is unstable. Combine Robux changer 2 with Robux changer 1
  6. // @author MiniMinusMan
  7. // @match https://www.roblox.com/transactions
  8. // @icon https://www.google.com/s2/favicons?sz=64&domain=tampermonkey.net
  9. // @grant GM.setValue
  10. // @grant GM.getValue
  11. // @license MIT
  12. // ==/UserScript==
  13. function Test() {
  14. var replaceArry = [
  15. [/5,889/gi, '1,370,556'], //Change 5,889 to your total + your fake robux
  16. [/806/gi, '1,372,661'], //Change 806 to your robux
  17. [/88/gi, '1,364,063'], //Change 88 to a unique sales of goods donation number (not common e.g 10, 2, 0, more like 88, 163, 393, 49, etc.)
  18. [/611/gi, '1,364,678'], //Change 611 to your Sales of Goods total (if you dont have sales of goods, delete this and the one above ^ )
  19. // etc.
  20. ];
  21. var numTerms = replaceArry.length;
  22. var txtWalker= document.createTreeWalker (
  23. document.body,
  24. NodeFilter.SHOW_TEXT,
  25. {acceptNode: function (node) {
  26. //-- Skip whitespace-only nodes
  27. if (node.nodeValue.trim() ) {
  28. return NodeFilter.FILTER_ACCEPT;
  29. }
  30. return NodeFilter.FILTER_SKIP;
  31. }
  32. },
  33. false
  34. );
  35. var txtNode = null;
  36. while (txtNode = txtWalker.nextNode () ) {
  37. var oldTxt = txtNode.nodeValue;
  38. for (var J = 0; J < numTerms; J++) {
  39. oldTxt = oldTxt.replace (replaceArry[J][0], replaceArry[J][1]); //This replaces the old text with the new text, so 533 is replaced with any string, e.g a number
  40. }
  41. txtNode.nodeValue = oldTxt;
  42. }
  43. }
  44. setInterval(Test,1)
 

Create an account or login to comment

You must be a member in order to leave a comment

Create account

Create an account on our community. It's easy!

Log in

Already have an account? Log in here.

Tips

Similar threads

Top Bottom