Trouble With Disabling Roblox's Module Script "BackpackScript"

You can write your topic however you want, but you need to answer these questions:

  1. I want to achieve making the default “BackpackScript” disabled, and my new one enabled.

  2. The issue is that it wont disable. It overrides each time. The one in starterplayerscripts is my own, but the one in coregui is roblox’s.

  3. I have tried editing the original but it has not helped.

After that, you should include more details if you have any. Try to make your topic as descriptive as possible, so that it’s easier for people to help you!

-- This is an example Lua code block

Please do not ask people to write entire scripts or design entire systems for you. If you can’t answer the three questions above, you should probably pick a different category.

the module you are trying to disable is part of the CoreGui which is not accessable.

however it seems that you want to disable backpack so here what you should do instead:

game:GetService("StarterGui"):SetCoreGuiEnabled(Enum.CoreGuiType.Backpack, false) -- This will only work on a local script

No, I do not want to disable the backpack gui. I just want to edit the modulescript and have my changes updated.

like @black1shadow1048 said, you cannot edit coregui At All, Its a very annoying thing but it helps with robloxes security. You have to disable the default backpack and make your own if you want to have control over the backpack.

1 Like