Access User Inventory

I want to be able to access the user’s inventory like how Catalog Avatar Creator does, examples below:

Access Inventory

Screenshot 2023-11-25 154958

Inventory Accessed

1 Like

aint no way everyone ignored you for 2 days

luckily you got me

heres source code on how to do it

local AvatarEditorService = game:GetService("AvatarEditorService")

AvatarEditorService:PromptAllowInventoryReadAccess()

local result = AvatarEditorService.PromptAllowInventoryReadAccessCompleted:Wait()

if result == Enum.AvatarPromptResult.Success then
  -- Access granted!
end

and heres the website i got it from: Avatar Editor Service | Documentation - Roblox Creator Hub

Enjoy!

1 Like

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.