Skip to content

Installation

Installing Satchel is easy and painless. Satchel is a drag-and-drop module that works out of the box and with no configuration needed.

Creator Marketplace

  1. Get the Satchel module from the Creator Marketplace.

    Creator Marketplace

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

  3. Open or locate the Toolbox.

    View Tab Toolbox

  4. Open your Inventory from the Toolbox.

    Inventory Tab

  5. Search for Satchel created by WinnersTakesAll and click on it.

    Toolbox

  6. Insert Satchel into the Explorer and drag it into StarterPlayerScripts.

    Explorer

GitHub Releases

  1. Download the Satchel.rbxmx file from Releases.

    GitHub Release

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

  3. Go to Explorer and right-click on StarterPlayerScripts and click on Insert from file....

    Insert From File

  4. Select the Satchel.rbxmx you downloaded from GitHub and click Open.

    Upload File

  5. Ensure that Satchelis in StarterPlayerScripts.

    Explorer

Wally

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

  2. Install Wally to your project.

  3. Initialize Wally using wally init.

  4. In the new wally.toml file, add satchel = "ryanlua/[email protected]". Be sure to use the latest version.

  5. Install Satchel from Wally by running wally install. Satchel should appear under project/Packages. Don't forget to add Packages to your .gitignore

  6. In a LocalScript under StarterPlayerScripts, require Satchel from the installation location of Wally. Default is ReplicatedStorage.Packages.

LocalScript
1
2
3
4
local ReplicatedStorage = game:GetService("ReplicatedStorage")
local Satchel = ReplicatedStorage.Packages.Satchel -- Make sure this points to where Satchel is

require(Satchel)