Revert channel builds

This will revert any channel builds that Roblox has placed on your account and revert them back to the normal version everyone should have.

  1. // ==UserScript==
  2. // @name Revert channel builds
  3. // @version 1.0.0
  4. // @description This will revert any channel builds that Roblox has placed on your account and revert them back to the normal version everyone should have.
  5. // @author BabyHamsta
  6. // @match https://*.roblox.com/*
  7. // @match https://roblox.com/*
  8. // @icon https://www.roblox.com/favicon.ico
  9. // @grant none
  10. // @run-at document-start
  11. // @license MIT
  12. // @namespace https://gf.qytechs.cn/users/1074418
  13. // ==/UserScript==
  14. (async () => {
  15. 'use strict';
  16. while (typeof Roblox == "undefined" || typeof Roblox.ProtocolHandlerClientInterface == "undefined") await new Promise(resolve => setTimeout(resolve))
  17. try {
  18. let ProtocolHandlerClientInterface = Roblox.ProtocolHandlerClientInterface
  19. Object.defineProperty(ProtocolHandlerClientInterface, "playerChannel", {
  20. value: "",
  21. writable: false
  22. });
  23. Object.defineProperty(ProtocolHandlerClientInterface, "channel", {
  24. value: "",
  25. writable: false
  26. });
  27. Object.defineProperty(ProtocolHandlerClientInterface, "studioChannel", {
  28. value: "",
  29. writable: false
  30. });
  31. console.warn("Roblox channel reverted successfully!")
  32. } catch (exception) {
  33. console.warn("There was an error trying to set the channel:");
  34. console.error(exception);
  35. }
  36. })()

QingJ © 2025

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