so i cooked up a quick script that can find the name of any asset
works with audio, decals, and models. might bug out if the animation is privated
here’s the code:
local market = game:GetService("MarketplaceService")
local asset_id = 566988802 --replace this with any id
local asset = market:GetProductInfo(asset_id)
print(asset.Creator, asset.Created, asset.Updated, asset.Name, asset.IsForSale, asset.URL)
paste it into a server script into the Workspace, then click Run
not really anything special but you could just like use the default roblox url
https://create.roblox.com/store/asset/<userid>
and put the user id in there rather than going here to find the script. you could also just type the simple line of code urself most of the time but it’s fine for beginners ig?
finally tried scripting stuff for real and made something that can be helpful for people, good job and keep up the good work prognosticator, as far as i can tell youre more serious about scripting this time