How to replace backpack script?

I’m trying to override roblox’s default backpack script, I’m using the same code but I’m changing some chings for customization. Where should I put the script and what should I name it for it to work?

I have done this before and it has worked, I just forgot how I did it

1 Like

Do you mean you want to disable the core Backpack functionality Roblox provides?

If so, this should do the trick;

local StarterGui = game:GetService("StarterGui")

StarterGui:SetCoreGuiEnabled(Enum.CoreGuiType.Backpack, false)

sorry If I didn’t explain it right, I’m trying to customize the backpack gui in my game while still keeping the original functionality of roblox’s default backpack system. I have the code and everything, I just dont know where to put this script and what to name it for it to work so that it would “override” the original backpack script

Solved the problem

(char limit)

1 Like

Perhaps in your reply that you marked as the solution, provide the info that answers the question.
Where did you place it, and what did you name it? Then people who find this later don’t have to make their own post.

pretty sure you have to use a custom “BackpackLoader” module or something of that name and the backpack script should be placed inside that one, its inside sps

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