Skip to content

Instantly share code, notes, and snippets.

@RC569
RC569 / robloxUsernameRedirect.js
Last active October 20, 2025 19:39
Roblox username redirect bookmarklet
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/