Roblox
Deep linking protocol for the Roblox gaming platform. Allows direct navigation to experiences, user profiles, groups, and more.
Base Syntax
roblox://[command]/[id]?[parameters] Commands
experiences/start
Launch a specific Roblox experience (game) by its Place ID
Parameters
| Name | Type | Required | Description | Example |
|---|---|---|---|---|
placeId | number | Required | Unique identifier for the Roblox place/experience | 606849621 |
gameInstanceId | string | Optional | Specific server instance to join (allows joining friends) | a1b2c3d4-e5f6-7890-abcd-ef1234567890 |
privateServerLinkCode | string | Optional | Access code for joining a private VIP server | 12345678901234567890123456789012 |
placeId number Unique identifier for the Roblox place/experience
Example:
606849621 gameInstanceId string Specific server instance to join (allows joining friends)
Example:
a1b2c3d4-e5f6-7890-abcd-ef1234567890 privateServerLinkCode string Access code for joining a private VIP server
Example:
12345678901234567890123456789012 Full Example
roblox://experiences/start?placeId=606849621&gameInstanceId=a1b2c3d4-e5f6-7890-abcd-ef1234567890 users/[userId]/profile
Open a user's profile page within the Roblox app
Parameters
| Name | Type | Required | Description | Example |
|---|---|---|---|---|
userId | number | Required | Unique Roblox user ID | 156 |
userId number Unique Roblox user ID
Example:
156 Full Example
roblox://users/156/profile groups/[groupId]
Navigate to a specific Roblox group page
Parameters
| Name | Type | Required | Description | Example |
|---|---|---|---|---|
groupId | number | Required | Unique identifier for the Roblox group | 1200769 |
groupId number Unique identifier for the Roblox group
Example:
1200769 Full Example
roblox://groups/1200769 catalog/[itemId]
Display a specific catalog item (clothing, accessories, etc.)
Parameters
| Name | Type | Required | Description | Example |
|---|---|---|---|---|
itemId | number | Required | Unique catalog asset ID | 1028594 |
itemType | enum | Optional | Type of catalog item Values: Asset, Bundle, GamePass, Badge |
itemId number Unique catalog asset ID
Example:
1028594 itemType enum Type of catalog item
Possible values:
Asset, Bundle, GamePass, Badge Full Example
roblox://catalog/1028594?itemType=Asset library/[assetId]
View a library asset (models, audio, decals created by users)
Parameters
| Name | Type | Required | Description | Example |
|---|---|---|---|---|
assetId | number | Required | Unique asset ID from the Roblox library | 123456789 |
assetId number Unique asset ID from the Roblox library
Example:
123456789 Full Example
roblox://library/123456789