Skip to content

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

  1. Get the Purse model from the Creator Store.

  2. Open Roblox Studio and create a new place or open an existing place.

  3. From Studio's Window menu or Home tab toolbar, open the Toolbox and select the Inventory tab.

    Toolbox

    Inventory Tab

  4. Locate the Purse model and click it, or drag-and-drop it into the 3D view.

  5. In the Explorer window, move the Purse model into ReplicatedStorage.

  6. 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
    end
    

    Warning

    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

  1. Download the Purse.rbxm or Purse.rbxmx model file from GitHub Releases.

    Info

    Binary (.rbxm) and XML (.rbxmx) model files contain the exact same model. .rbxm is a smaller file size to download.

  2. Open Roblox Studio and create a new place or open an existing place.

  3. In the Explorer window, insert Purse into ReplicatedStorage.

  4. 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.

  1. Open your Rojo project in the code editor of your choice.

  2. In the wally.toml file, add the latest Wally version for Purse. Your dependencies should look similar to this:

    wally.toml
    [dependencies]
    purse = "ryanlua/purse@1.1.6"
    
  3. Install Purse from Wally by running wally install.