👋 Welcome
Getting Started
Sign Up & Add GamesSDK Setup & UpdatesSharing & PermissionsProducts
Popmall (Catalog)Music PlayerData Store EditorCustom EventsAnalyticsProduct OptimizationPopfeedBrand CollabCampaignsCampaign ControlSupport
Questions or FeedbackMetric DefinitionsSDK ChangelogMusic Player – free customizable music player
Enhance you experience with a simple music player. Easily customize the playlist and select between a default or compact player.
Setup
Before you start:
1. Enable the catalog in your BloxbizConfig
- Open your "BloxbizConfig" in your Replicated Storage
- Copy and paste the following code:
local BloxbizConfig = {}
BloxbizConfig.AccountID = Account ID
-- Display the music player in the top right
BloxbizConfig.MusicPlayerEnabled = true
-- When true, displays a compact music player in the top right toolbar
BloxbizConfig.MusicPlayerCompactDesign = false
BloxbizConfig.MusicPlayerToolbarButtonLabel = "Music Player"
-- Customize the music in the player
BloxbizConfig.MusicPlayerPlaylist = {
{
SongName = "Bonesaw",
Artist = "Roblox",
SoundId = "rbxassetid://9043995500",
},
{
SongName = "Bright Sky",
Artist = "Roblox",
SoundId = "rbxassetid://1836729058",
},
{
SongName = "Candle Talk",
Artist = "Roblox",
SoundId = "rbxassetid://1842218756",
},
{
SongName = "Funky Beats",
Artist = "Roblox",
SoundId = "rbxassetid://1842627030",
},
{
SongName = "I Need Someone",
Artist = "Roblox",
SoundId = "rbxassetid://1835464913",
},
{
SongName = "Leafy Streets",
Artist = "Roblox",
SoundId = "rbxassetid://1836728745",
},
{
SongName = "Long Ago",
Artist = "Roblox",
SoundId = "rbxassetid://1841838456",
},
{
SongName = "Pentagon",
Artist = "Roblox",
SoundId = "rbxassetid://1836404723",
},
{
SongName = "R'N'B Dramedy",
Artist = "Roblox",
SoundId = "rbxassetid://9047992158",
},
{
SongName = "The Magical Unique",
Artist = "Roblox",
SoundId = "rbxassetid://1838052733",
},
{
SongName = "The Underworld",
Artist = "Roblox",
SoundId = "rbxassetid://1846178183",
},
{
SongName = "Time Clash",
Artist = "Roblox",
SoundId = "rbxassetid://1841025723",
},
{
SongName = "Vivace",
Artist = "Roblox",
SoundId = "rbxassetid://1843374554",
},
}
return BloxbizConfig
Customize the playlist. Discover more audio here.
- Replace
Account ID
with your Super Biz Account ID
2. Test and publish your game
First test that the Music Player is working when you run your game in Roblox Studio. If everything looks good, you are finished setting up your game and ready to publish!