👋 Welcome

Getting Started

Sign Up & Add Games

SDK Setup & Updates

Sharing & Permissions

Products

Popmall (Catalog)

Music Player

Data Store Editor

Custom Events

Analytics

Product Optimization

Popfeed

Brand Collab

Campaigns

Campaign Control

Support

Questions or Feedback

Metric Definitions

SDK Changelog

Music 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.

Default version

Default version

Compact version

Compact version

Setup

Before you start:

  1. Create a Super Biz account

  2. Set up your BloxbizSDK

1. Enable the catalog in your BloxbizConfig

  1. Open your "BloxbizConfig" in your Replicated Storage
  2. 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

<aside> 💡 Customize the playlist. Discover more audio here.

</aside>

  1. 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!