Getting Uploader Username from audio id

Is it possible to get the player’s username that uploaded a audio?

I don’t think you can, although all I know is you can get the Asset Name

local Sound = workspace.Sound -- Sound Location

local id = Sound.SoundId:match("%d+") -- Sound Id

local Asset = game:GetService("MarketplaceService"):GetProductInfo(id) -- AssetId

local AssetName = Asset.Name -- AssetName
1 Like

I just needed to know how to get the Uploaders name, but thanks for telling me i cant.

Yes it is, you’ll need to use GetProductInfo.

local MarketplaceService = game:GetService('MarketplaceService')
local data = MarketplaceService:GetProductInfo(id)
print(data.Creator.Name)

(also youll need to do checks for groups)

1 Like

Oh This nice to know. Thanks!

(30 Limit.)