This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var name = prompt("Enter Roblox player name, NOT display name"); | |
if (name !== null && name.trim() !== "") { | |
const url = `https://www.roblox.com/users/profile?username=${encodeURIComponent(name.trim())}`; | |
window.location.href = url; | |
} | |
// This prompts you for a Roblox Username then redirects you to the user. | |
// To use as a bookmarklet, create a new bookmark and put the code in robloxUsernameRedirectBookmarklet.js inside of the URL parameter. | |
// bookmarklet made using https://caiorss.github.io/bookmarklet-maker/ |