I compile all Monstercat's song's AssetsID, Name to a single table

I inspired by the monstercat and Roblox partnership that provided the high-quality song, and I am making a radio game pass for my game, also mobile player won’t have access to roblox library, which can reduce in the sale of radio gamepass, so I make the table list that you can use to quickly put all the nice song from monstercat into your game, also Roblox blocked access to HttpService to it own website, so it hard to do it on the go.

local MonstercatAlbum = {{AssetsId = 5410086218 , Name = "Noisestorm - Crab Rave"}, {AssetsId = 5410085694 , Name = "Tokyo Machine - EPIC"}, {AssetsId = 5410085863 , Name = "CloudNone - From Here"}, {AssetsId = 5410085763 , Name = "Tokyo Machine - PLAY"}, {AssetsId = 5410080926 , Name = "Protostar - Galaxies"}, {AssetsId = 5410083226 , Name = "Tony Romera - Heat Wave"}, {AssetsId = 5409360995 , Name = "Dion Timmer - Shiawase"}, {AssetsId = 5410082879 , Name = "Noisestorm - Escape"}, {AssetsId = 5410082097 , Name = "Bad Computer & Danyka Nadeau - Chasing Clouds"}, {AssetsId = 5410082534 , Name = "FWLR - Hot"}, {AssetsId = 5410085296 , Name = "Jay Cosmic - Ocean Eyes"}, {AssetsId = 5410081542 , Name = "Rootkit - Taking Me Higher"}, {AssetsId = 5410084188 , Name = "WRLD - Hang Up (feat. Savoi)"}, {AssetsId = 5410083299 , Name = "Koven - Gold"}, {AssetsId = 5410086149 , Name = "Pixel Terror & Dirty Chime - Collapse"}, {AssetsId = 5410083912 , Name = "Ephixa - Dreamstate"}, {AssetsId = 5410080771 , Name = "F.O.O.L - Revenger"}, {AssetsId = 5410083814 , Name = "soupandreas - Sprite"}, {AssetsId = 5410084538 , Name = "Notaker - The Storm"}, {AssetsId = 5410084006 , Name = "Tony Romera & SQWAD - St Tropez"}, {AssetsId = 5410084802 , Name = "Pixel Terror & EMELINE - Chroma"}, {AssetsId = 5410082346 , Name = "Hoaprox & Rogue - New World"}, {AssetsId = 5410084268 , Name = "INTERCOM - Decoy World VIP (feat. Park Avenue)"}, {AssetsId = 5410084645 , Name = "Pixel Terror & Aviella - Enigma"}, {AssetsId = 5410080475 , Name = "Pixel Terror - Machina"}, {AssetsId = 5410084346 , Name = "Pixel Terror - Amnesia"}, {AssetsId = 5410081471 , Name = "Duumu - Forward (feat. MIA)"}, {AssetsId = 5410084426 , Name = "Feint feat. Elizaveta - Drifters"}, {AssetsId = 5410082468 , Name = "Snavs - Us"}, {AssetsId = 5410084870 , Name = "Dion Timmer feat. Micah Martin - Internet Boy"}, {AssetsId = 5410080857 , Name = "F.O.O.L & Midranger - Neon"}, {AssetsId = 5410085602 , Name = "DESERT STAR - Carissa"}, {AssetsId = 5410082171 , Name = "Protostar & Sam Tabor - Feel Your Heart"}, {AssetsId = 5409836121 , Name = "Aiobahn feat. Cozi Zuehlsdorff - Medusa"}, {AssetsId = 5410082805 , Name = "Tony Romera - I Can\t"}, {AssetsId = 5410082273 , Name = "Bensley - All Night"}, {AssetsId = 5410084938 , Name = "DESERT STAR - Empty Sky"}, {AssetsId = 5410081639 , Name = "MUZZ - Spectrum"}, {AssetsId = 5410085189 , Name = "Stephen Walking - Odin\s Ghost"}, {AssetsId = 5410082407 , Name = "CloudNone - 3HOURS"}, {AssetsId = 5410086445 , Name = "Grant - Are We Still Young (feat. Juneau)"}, {AssetsId = 5410081008 , Name = "Tails & Juelz - Cobra"}}

Also, I will update the table whenever monstercat added a new song, or you can use this python script to do it yourself

import urllib.request, json 
with urllib.request.urlopen("https://search.roblox.com/catalog/json?CatalogContext=2&Category=9&CreatorID=1750384777&SortType=2") as url:
    data = json.loads(url.read().decode())
    lines = []
    for sub in data:
        mydict = {
            "AssetsId" : sub['AssetId'],
            "Name" : sub["Name"]
        
        }
        string = ("{"f'AssetsId = {mydict["AssetsId"]} , Name = "{mydict["Name"]}"'"}")
        lines.append(string)
stringData = str(lines)
newstringData = stringData.replace("'","")
print(newstringData)
3 Likes

Hi! I think this is insufficient for Community Resources. Please construct your post a bit?

Also, what is the point of this?

4 Likes

I do not think follows the rules of the community resources page

1 Like

But what about the post not being very constructive? Will you be able to make the post better and more interesting?

Id recommend structuring your post better, and your code. This just seems sloppy and out of place, also I recommend a shorter name for your post.

is it better? what do you think now?

Yeah its a little better, provides more information. Keep on trying with your posts.

1 Like

My first community resources’s post, sorry

Its fine! Again, just keep trying.

1 Like