game:GetService("BackPack")
The above is just something I thought of maybe working. I am trying to make my own custom backpack, or inv for items that are in backpack to be stored there. I have removed ROBLOX's custom backpack, and made it so that when you click, or pres no 1, 2 etc it takes you to the slot. I just need to figure out how to make it check the players backpack. Something that just gets the stuf in a players backpack.
Use a LocalScript
.
local plr = game.Players.LocalPlayer local tools = plr.Backpack for i =1, #tools do local tool = tools[i] --Create custom GUI element here for the tool. end