Roblox
Create exclusive items, exclusive spaces, and track conversion and engagement in Roblox
Last updated
Was this helpful?
Create exclusive items, exclusive spaces, and track conversion and engagement in Roblox
Last updated
Was this helpful?
The Bounce SDK for Roblox lets you easily create exclusive Roblox experiences and track user engagement from within your Roblox place.
With the Bounce SDK you can:
โ Create exclusive items in your place that are claimable via Bounce Link tags, claim codes and QRs.
โ Claim exclusive Limiteds via Bounce Link, tied to Roblox accounts and usable across places.
โ Designate exclusive in-place spaces only accessible by specific users (verified product holders, users who have completed engagement campaign requirements, etc)
โ Track engagement within your Roblox place with custom events for claims, spaces and more.
Roblox exclusives can be granted to users via two different delivery flows:
๐ Claim via Roblox Login (OAuth) that directly grants exclusives to a user's Roblox Id.
๐ In-game deeplinks that are verified via the Bounce server.
In the login claim flow, Roblox users can authenticate themselves by logging in with their Roblox account on either the Bounce website, an embedded Bounce portal, or a 3rd party site. This allows Bounce to securely link any exclusive (UGC item, Limited, private map area, etc) to a Roblox user. These exclusives are activated when a user enters the target Roblox place.
The Login to Claim flow enables the following:
Exclusives tied directly to Roblox user's id.
Easily link engagement across digital platforms. For example:
A campaign where a user links their Roblox and Discord accounts, and receives Roblox items based on Discord roles, or Discord roles based on Roblox inventory.
Deeper analytics of user engagement across platforms for more complete user profiles.
Benefits of the deeplink flow are:
Quick and direct access to a Roblox place, no additional sign-in necessary.
The Bounce SDK is a ModuleScript. Please contact the Bounce team at dev@letsbounce.gg for access.
Add the BounceSDK ModuleScript to Roblox Studio. The BounceSDK should be accessed via server-side scripts ONLY, so we recommend placing it within your ServerScriptService.
Before using the BounceSDK for Roblox, you must obtain an API key. Please contact dev@letsbounce.gg for your API key.
You must require
the BounceSDK within your desired script.
Initialize the BounceSDK with your API key. You MUST initialize before use.
apiKey
Your Roblox BounceSDK API key
YES
Common data types exported from the BounceSDK. Consist of:
Unlockable
TrackEvent
player
The Player to query
YES
handleUnlockable
A callback function triggered for each unlockable for a specific player.
NO
{Unlockable}
: An array of Unlockables. Can either use this array or the handleUnlockable
utility callback function.
Gets unlockables for a Player using encrypted Bounce Data that the user contains when launching the Roblox Place.
player
The Player to query
YES
handleUnlockable
A callback function triggered for each unlockable for a specific player.
NO
{Unlockable}
: An array of Unlockables. Can either use this array or the handleUnlockable
utility callback function.
Track user engagement using specific track events. For
player
The Player to query
YES
event
The event data to track
YES
nil
Below is a demo Login to Claim (OAuth) flow. You can !
Bounce Link tags can issue secure deeplinks into Roblox experiences that allow users to claim exclusives. Deeplinks are and exclusives are linked to the current Roblox user's ID.
Gets unlockables for a PlayerId for the current place. Refer to above for BounceSDK specific types.
Prompt Roblox login
Select your Roblox account
Authorize and connect your Roblox account
Bounce to Roblox experience!