Robux Display Modifier

Modify displayed robux amount to "20M" instead of "39" on page refresh for Roblox.com

  1. // ==UserScript==
  2. // @name Robux Display Modifier
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.1
  5. // @description Modify displayed robux amount to "20M" instead of "39" on page refresh for Roblox.com
  6. // @author Your Name
  7. // @match https://www.roblox.com/*
  8. // @grant none
  9. // @license MIT`
  10. // ==/UserScript==
  11.  
  12. (function() {
  13. 'use strict';
  14.  
  15. // Function to modify the robux amount
  16. function modifyRobuxAmount() {
  17. // Select the element containing the robux amount
  18. var robuxAmountElement = document.querySelector("#nav-robux-amount");
  19.  
  20. // Check if the element exists
  21. if (robuxAmountElement) {
  22. // Change the text content to "20M"
  23. robuxAmountElement.textContent = "20M";
  24. }
  25. }
  26.  
  27. // Call the function when the DOM is fully loaded
  28. window.addEventListener("load", modifyRobuxAmount);
  29. })();

QingJ © 2025

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