Hey, I'm making a jukebox GUI. I have the music player set up but IDK how to get the music name eg... http://web.roblox.com/ROBLOX-Theme-10-sec-item?id=130768805 You would type in 130768805 hit play and it would say Now playing: ROBLOX Theme (10 sec)
You can use Market place Service to do that, the following script will print out the name from the id
local SoundId = 130768805 -- Sound Id Of The Sound local Asset = game:GetService("MarketplaceService"):GetProductInfo(SoundId) --[[Get's Product Information Of The Sound--]] print(Asset.Name) --Print's The Name Of The Audio