Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // ==UserScript==
- // @name Revert Roblox update channel
- // @version 1.0.0
- // @description Reverts any builds that Roblox has forced on your account
- // @author BabyHamsta
- // @match https://*.roblox.com/*
- // @match https://roblox.com/*
- // @icon https://www.roblox.com/favicon.ico
- // @grant none
- // @run-at document-start
- // @license MIT
- // ==/UserScript==
- (async () => {
- "use strict";
- while (typeof Roblox === "undefined" || typeof Roblox.ProtocolHandlerClientInterface === "undefined") await new Promise((res) => setTimeout(res))
- try {
- let PHCI = Roblox.ProtocolHandlerClientInterface
- Object.defineProperty(PHCI, "playerChannel", {
- value: "",
- writable: false
- })
- Object.defineProperty(PHCI, "channel", {
- value: "",
- writable: false
- })
- Object.defineProperty(PHCI, "studioChannel", {
- value: "",
- writable: false
- })
- console.warn("Roblox update channel reverted successfully:\n", PHCI)
- } catch (ex) {
- alert("Failed to revert update. Check console for details")
- console.error(`\n\nFailed to revert update:\n${ex}\n\n`)
- }
- })()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement