How could you access a model or audio's name through the object's id on roblox?
do i need httpservice?
You would use the MarketplaceService.
Example code:
local Market=game:GetService("MarketplaceService") function GetAssetName(AssetID) local ProductInfo=Market:GetProductInfo(AssetID,0) return ProductInfo.Name end
mine is kind of the way Dakota99 did his, but with less coding, it's easier to make it a variable like this:
local name = game:GetService("MarketplaceService"):GetProductInfo(ID HERE, 0).Name