Pages
Overview
Properties
IsFinished
Code Samples
local MarketplaceService = game:GetService("MarketplaceService")
local function Request_GetWorldProductsAsync()
local success, errorOrWorldProducts = pcall(function()
return MarketplaceService:GetWorldProductsAsync()
end)
if success then
local worldProducts = errorOrWorldProducts
while true do
local currentPage = worldProducts:GetCurrentPage()
-- 마지막 페이지이면 루프 탈출
if worldProducts.IsFinished or currentPage == nil then
break
end
end
end
endMethods
AdvanceToNextPageAsync
Parameters
Return
Code Samples
GetCurrentPage
Parameters
Return
Code Samples
Events
Last updated