Installation¶
There are a few ways to get started with Llama.
Method 1: Import model file¶
- Download the
.rbxmx
model file from the latest release on the Llama releases page. - Insert the model anywhere in a Roblox place!
Method 2: Good ol' copy + paste¶
- Copy the
src
directory of Llama into your project. - Rename it to
Llama
. - Make sure you put
t
under the Llama directory. (this step will hopefully be resolved in the future by package managers or Luau type-checking) - Use something like Rojo to sync your project to Roblox Studio!
Method 3: Git submodule¶
- Navigate to where you want to keep your submodules in Git bash.
- Run
git submodule add https://github.com/F-RDY/llama.git
. - Using something like Rojo, set up your project to sync
Llama/src
into Roblox Studio!
Method 4: Package manager¶
Coming Soon™