Hi, So I am trying to get specific player assets in my game so I can list it out on a ScrollingFrame, for example I have a button to click, and I want it to display the type of assets the player has in the scrolling frame. I am currently at InsertService with my current knowledge of this the rest of it is unknown on what I have to do. If you can, please help.
1 Like
You can’t use InsertService to insert models that are not owned by you. Are you trying to make a list of the owner’s assets, and not everybodies?
2 Likes
Im trying to make a list of only the players assets (the holder of the gui basically) i want to list out their asset type like pants or shirt so they can select it.
local linkforplayer = "https://catalog.roproxy.com/v1/search/items/details?Category=3&CreatorName="..player.Name
local datafromlink = http:GetAsync(linkforplayer,true)
local readabledata = http:JSONDecode(datafromlink)
This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.