Purse - CoreGui decoupled default backpack

Creator Store Broken Installation Notice

Recently, Roblox made changes to the toolbox that caused Satchel and Purse, along with every other backpack system, to break. I’m aware of this issue and working to get it fixed. I’ve received confirmation from Roblox engineers, but no action has been taken yet, and it’s been weeks.

Toolbox Sandboxing

Everything inserted from the Toolbox is now sandboxed using script capabilities, which do not yet support equipping tools. I’ve provided notice of this issue before sandboxing was enforced in the toolbox, but it was still enabled, providing zero notice or migration window before it was enabled, breaking every single backpack system that relies on being able to equip tools.

Disable Sandboxing

The current fix is to disable the Sandboxed property for all scripts under the model you are using.

Select the backpack model and then paste the following code into the Command Bar:

const Selection = game:GetService("Selection")

for _, instance in Selection:Get() do
    instance.Sandboxed = false

    for _, descendant in instance:GetDescendants() do
        descendant.Sandboxed = false
    end
end
1 Like