Installation
Purse is available on the Creator Store, Wally, and GitHub Releases.
Creator Store GitHub Releases Wally
Purse uses RunContext to run anywhere, so you do not need to move it from Workspace, though it is recommended to parent it to ReplicatedStorage for best practices and organizational reasons.
Danger
Do not parent the Purse to any starter containers or it will run multiple times.
Creator Store¶
-
Get the Purse model from the Creator Store.
-
Open Roblox Studio and create a new place or open an existing place.
-
From Studio's Window menu or Home tab toolbar, open the Toolbox and select the Inventory tab.


-
Locate the Purse model and click it, or drag-and-drop it into the 3D view.
-
In the Explorer window, move the Purse model into
ReplicatedStorage. -
With the Purse model selected, paste the following code into the Command Bar:
Disable Sandboxing for Selected Instances 1 2 3 4 5 6 7 8 9
const Selection = game:GetService("Selection") for _, instance in Selection:Get() do instance.Sandboxed = false for _, descendant in instance:GetDescendants() do descendant.Sandboxed = false end endWarning
Models on the Creator Store including Purse are sandboxed by default. You must disable the sandboxing on Purse for it to work properly using the above command.
GitHub Releases¶
-
Download the
Purse.rbxmorPurse.rbxmxmodel file from GitHub Releases.Info
Binary (
.rbxm) and XML (.rbxmx) model files contain the exact same model..rbxmis a smaller file size to download. -
Open Roblox Studio and create a new place or open an existing place.
-
In the Explorer window, insert Purse into
ReplicatedStorage. -
Select the Purse model file you downloaded from GitHub.
Wally¶
You are expected to already have Wally set up in your Rojo project and basic knowledge of how to use Wally packages.
-
Open your Rojo project in the code editor of your choice.
-
In the
wally.tomlfile, add the latest Wally version for Purse. Your dependencies should look similar to this:wally.toml[dependencies] purse = "ryanlua/purse@1.1.6" -
Install Purse from Wally by running
wally install.