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/1073866
  13. // ==/UserScript==
  14.  
  15. (async () => {
  16. 'use strict';
  17.  
  18. while (typeof Roblox == "undefined" || typeof Roblox.ProtocolHandlerClientInterface == "undefined") await new Promise(resolve => setTimeout(resolve))
  19.  
  20. try {
  21. let ProtocolHandlerClientInterface = Roblox.ProtocolHandlerClientInterface
  22. Object.defineProperty(ProtocolHandlerClientInterface, "playerChannel", {
  23. value: "",
  24. writable: false
  25. });
  26. Object.defineProperty(ProtocolHandlerClientInterface, "channel", {
  27. value: "",
  28. writable: false
  29. });
  30. Object.defineProperty(ProtocolHandlerClientInterface, "studioChannel", {
  31. value: "",
  32. writable: false
  33. });
  34.  
  35. console.warn("Roblox channel reverted successfully!")
  36. } catch (exception) {
  37. console.warn("There was an error trying to set the channel:");
  38. console.error(exception);
  39. }
  40. })()

QingJ © 2025

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