Is there any more asset links than "rbxasset" or "rbxassetid"?

just curious and wanna see if there is more since I saw “wasset://” in a roblox game

The full official list is rbxasset, rbxassetid, rbxgameasset, rbxthumb, rbxhttp, rbxtemp. Standard http/https. wasset:// isn’t among these, if you saw it inside a specific game, it may have been a custom, non-Roblox-engine string that the game’s own scripts were interpreting themselves, rather than something the Roblox engine natively resolves.

1 Like

mobile:
roblox://

desktop:
roblox://

depricated ones:
rbx-uwp://

usage
roblox://placeId=id
roblox://experiences/start?placeId=id
roblox://placeID=id&gameInstanceId=jobid

these are called uri schemes btw.

He’s asking abt assestid not urls

1 Like

Hey there! To answer your question, wasset:// is actually not an official Roblox asset scheme. It’s highly likely a custom string prefix created by the developer of that specific game. (For example, they might have a ModuleScript that parses “wasset://1234” and automatically converts it into a standard rbxassetid:// or rbxasset:// behind the scenes for their own custom framework).

However, there are indeed other official asset URI schemes you can use! Here are the main ones:

  • rbxassetid://[ID] - The standard one for web-hosted assets.
  • rbxasset://[Path] - Used to load assets directly from the local client’s content folder (usually built-in Roblox assets).
  • rbxgameasset://[Path] - Used for assets uploaded directly to your specific game/universe via the Asset Manager (e.g., rbxgameasset://Images/MyIcon).
  • rbxthumb://[Parameters] - This is a very powerful one! It dynamically fetches generated thumbnails for assets, users, or games. (e.g., rbxthumb://type=AvatarHeadShot&id=123&w=150&h=150).
  • http:// or https:// - Standard web protocols (mostly used with HttpService, though occasionally applicable to UI elements depending on security settings).

Hope this satisfies your curiosity!

I did some research online for you and included the answer to your question here—along with some additional information you might not even need.

If you’re developing a game, I wish you the best of luck.

1 Like

oopsy
sorry i cant read, thought you ment robloxs uri schemes in gerneral

Haha, all good lol. Have a good day!

1 Like