đź‘‹Â Welcome
Getting Started
Products
Support
The Bloxbiz SDK takes only a few minutes to set up and enables products like the Catalog, Analytics, and more.
The Bloxbiz Plugin makes easy to install and update the SDK.
First make sure to sign up and register your game.
Download the Bloxbiz Plugin (made by @simplelobster1).
Open studio, navigate to the Bloxbiz Plugin, and click on "Settings"
Enter your API key and press "Apply." You can find your API Key in the Dev Portal > Account > SDK Details.
If you’re working with other developers, the API key must come from the person who added the game to the Super Biz Portal.
If the API key fails to save then the game hasn’t been added to the portal or the API key isn’t for the account that owns in the game in the portal.
Published development environments must be added to the portal separately.
Press "Allow" to give the Bloxbiz Plugin permission to use the Bloxbiz API (you only need to do this once)
In your plugin toolbar, click on "Add/Update SDK" to add the BloxbizSDK to your game. Note: if the "Add/Update SDK" button shows a refresh icon, that means there is an update to the BloxbizSDK or you do not have the BloxbizSDK added to your game.
You'll need to turn on Script Injection for the Bloxbiz Plugin in the Plugin Manager. Note: Bloxbiz only uses Script Injection to add/update the BloxbizSDK.
You should see the BloxbizSDK in your game's ServeScriptService in the Explorer Note: Do not modify anything within BloxbizSDK.
Make sure to enable HTTP requests. Go to Game Settings > Security and turn on Allow HTTP Requests
.
In your Explorer, add a ModuleScript to Replicated Storage and name it "BloxbizConfig"
Open "BloxbizConfig" and delete any code in the file
Copy and paste the below code snippet into "BloxbizConfig":
local BloxbizConfig = {}
BloxbizConfig.AccountID = <Account ID>
-- ex: BloxbizConfig.AccountID = 123
return BloxbizConfig
Replace where it says Account ID
with your Bloxbiz Account ID
After you configure your BloxbizConfig, you’re finished getting setup. Congrats! 🎉
You’ll automatically start to see analytics in the Dev Portal within 24 hours (reports are generated every night at 1am EST) and you’re ready to explore other Super Biz products.
We make regular improvements to the Bloxbiz SDK. To keep your SDK up-to-date with the latest improvements, make sure to check for updates:
Open Roblox Studio, and use the Toolbar to navigate to your Plugins.
First update your Bloxbiz Plugin and then see if the Bloxbiz Plugin is displaying a refresh icon, that means there is a new version available for the BloxbizSDK.
Press "Add/Update SDK" to get the latest version of the BloxbizSDK.
<aside> ➡️ Continue to Sharing & Permissions
</aside>