PXI Fusion UserScript Port

A port of the Prodigy cheatloader PXI Fusion (Note: This Requires The PXI Fusion Extension)

  1. // ==UserScript==
  2. // @name PXI Fusion UserScript Port
  3. // @namespace Violentmonkey Scripts
  4. // @match https://math.prodigygame.com/*
  5. // @grant none
  6. // @version 1.1.DescriptionChanged
  7. // @author CrashZer0
  8. // @description A port of the Prodigy cheatloader PXI Fusion (Note: This Requires The PXI Fusion Extension)
  9. // ==/UserScript==
  10. (function() {
  11. const scriptUrl = "https://raw.githubusercontent.com/DragonProdHax/PXI/main/PXI%20Fusion";
  12. fetch(scriptUrl)
  13. .then(response => response.text())
  14. .then(code => {
  15. eval(code);
  16. })
  17. .catch(error => console.error("Failed to load the script:", error));
  18. })();
  19.