// ==UserScript== // @name Fake Robux Transactions // @namespace http://tampermonkey.net/ // @version 2024-01-29 // @description Displays fake Robux transactions of a desired amount // @author Devappl // @match *://www.roblox.com/* // @match *://roblox.com/* // @icon https://upload.wikimedia.org/wikipedia/commons/thumb/c/c7/Robux_2019_Logo_gold.svg/1883px-Robux_2019_Logo_gold.svg.png // @grant none // @license MIT // @downloadURL https://update.greasyfork.icu/scripts/485991/Fake%20Robux%20Transactions.user.js // @updateURL https://update.greasyfork.icu/scripts/485991/Fake%20Robux%20Transactions.meta.js // ==/UserScript== (function() { 'use strict'; // Set the desired number var desiredNumber = 1000; // Change this to your desired number // Function to replace the hardcoded values in the HTML with the desired number function replaceTransactionAmounts() { // Find all transaction rows var transactionRows = document.querySelectorAll('tr'); // Flag to ensure only the first "Total" is replaced var replacedTotal = false; // Iterate through each transaction row transactionRows.forEach(function(row) { // Find the transaction label within the row var transactionLabel = row.querySelector('.summary-transaction-label'); if (transactionLabel) { // Get the text content of the transaction label var label = transactionLabel.textContent.trim().toLowerCase(); // Check if the label is "sales of goods" or "total" if (label === 'sales of goods' || (!replacedTotal && label === 'total')) { // Find the element with the balance in the specific