this will get the username but i want the name of the item from the catalog "1029025" -The Classic ROBLOX Fedora-
function UsernameFromID(ID) if type(ID) ~= "number" then return end local sets = game:service("InsertService"):GetUserSets(ID) for k, v in next, sets do if v.Name == "My Models" then return v.CreatorName end end end print(UsernameFromID(1029025))
Implement this somehow in your code:
local Asset = game:GetService("MarketplaceService"):GetProductInfo(1029025) print(Asset.Name)