// ==UserScript== // @name Roblox Free Verification badge (FIXED) // @namespace http://tampermonkey.net/ // @version 1.2 // @description Adds the roblox blue verified badge next to ur profile header, I finally fixed this shit again after a whole ass year :)) // @author Emree.el on Instagram // @match https://www.roblox.com/users/564962235/profile // @grant none // @license MIT // @downloadURL https://update.greasyfork.icu/scripts/506079/Roblox%20Free%20Verification%20badge%20%28FIXED%29.user.js // @updateURL https://update.greasyfork.icu/scripts/506079/Roblox%20Free%20Verification%20badge%20%28FIXED%29.meta.js // ==/UserScript== (function() { 'use strict'; const badgeSVG = `328744005`; function addBadge() { const container = document.querySelector('.profile-header-title-container'); if (!container) return; // Prevent adding badge multiple times if (container.querySelector('.profile-verified-badge-icon')) return; // Create wrapper for badge with styling to push it right const badgeWrapper = document.createElement('span'); badgeWrapper.style.cssText = ` display: inline-flex; align-items: center; margin-left: 12px; vertical-align: middle; `; badgeWrapper.innerHTML = badgeSVG; // Append badge at the end (right side) container.appendChild(badgeWrapper); } // Wait for page and element const interval = setInterval(() => { if (document.readyState === 'complete') { addBadge(); clearInterval(interval); } }, 300); })();