// ==UserScript== // @name Roblox Advanced Helper // @namespace http://iomods.weebly.com/ // @version 1.3 // @description Roblox Advanced Settings + Background Colors [BETA] + Easy Game Joining By ID + Advanced Ad Removing // @author SnowLord7 // @match https://www.roblox.com/* // @grant (C) SnowLord7 2018 // @downloadURL https://update.greasyfork.icu/scripts/39760/Roblox%20Advanced%20Helper.user.js // @updateURL https://update.greasyfork.icu/scripts/39760/Roblox%20Advanced%20Helper.meta.js // ==/UserScript== var customHTML = ''; customHTML += '
'; customHTML += '
'; customHTML += '

Custom Settings


'; customHTML += '

Background

'; customHTML += '

Join Game By ID

'; customHTML += '

Remove Uncaught Ads

'; customHTML += '

'; customHTML += '
'; customHTML += ''; document.getElementsByClassName("xsmall age-bracket-label")[0].innerHTML = customHTML; document.getElementById("customAdKill").addEventListener("click", adKill, false); document.getElementById("customJoinGameButton").addEventListener("click", joinGame, false); document.getElementById("customBackgroundInput").value = document.body.style.backgroundColor; function customBackground() { try { document.body.style.backgroundColor = document.getElementById("customBackgroundInput").value; document.getElementsByClassName("content")[0].style.backgroundColor = document.getElementById("customBackgroundInput").value; } catch(e) {} setTimeout(customBackground, 100); } function joinGame() { var customID = document.getElementById("customJoinGameInput").value; Roblox.GameLauncher.joinMultiplayerGame(customID); } function adKill() { try { document.getElementById("Skyscraper-Abp-Left").remove(); //console.log("Removed an Ad!"); } catch(e) {} try { document.getElementById("Skyscraper-Abp-Right").remove(); //console.log("Removed an Ad!"); } catch(e) {} try { document.getElementById("Leaderboard-Abp").remove(); //console.log("Removed an Ad!"); } catch(e) {} try { document.getElementById("AdvertisingLeaderboard").remove(); //console.log("Removed an Ad!"); } catch(e) {} try { document.getElementById("Ads_WideSkyscraper").remove(); //console.log("Removed an Ad!"); } catch(e) {} try { document.getElementById("Leaderboard-Abp").remove(); //console.log("Removed an Ad!"); } catch(e) {} try { for (i = 0; i < 3; i++) { document.getElementsByClassName("ads-container")[0].remove(); document.getElementsByClassName("ads-container")[i].remove(); } //console.log("Removed an Ad!"); } catch(e) {} console.log("Attempted to remove ads."); } document.getElementById("customName").innerHTML = Roblox.CurrentUser.name; customBackground(); adKill();