local places = game:GetService("AssetService"):GetGamePlacesAsync() for _, place in pairs(places:GetCurrentPage()) do local info = game:GetService("MarketplaceService"):GetProductInfo(place.PlaceId) print("👣👣👣👣👣👣👣👣") print("Name: " .. place.Name) print("PlaceId: " .. place.PlaceId) print("Description: " .. (info.Description or "N/A")) print("Created: " .. info.Created) print("Updated: " .. info.Updated) print("Creator: " .. info.Creator.Name) end