Important
This project is discontinued since December 2025.
A Minecraft Bedrock add-on for SCP Foundation-themed creations.
- Download an archive file with the
.mcaddonextension for the version you want. - Open your file explorer app and find the file you downloaded in step 1.
- Open the file to install. You should see a prompt like "Open with Minecraft".
- Add the installed pack(s) to your (new) world.
- Done!
-
Download an archive file with the
.zipextension for the version you want.⚠️ Zip file may not be available. In that case, download the file the.mcaddonextension and change its file extension to.zip. -
Open your file explorer app and find the file you downloaded in step 1.
-
Extract the zip file.
-
Copy and paste the extracted pack folder(s) into appropriate locations.
You need to know where the
com.mojangfolder is. It heavily depends on what platform your device is on.On Windows:
C:\Users\%username%\AppData\Roaming\Minecraft Bedrock\Users\Shared\games\com.mojangFor other platforms, find other resources online.
Behavior pack must be copied into either
behavior_packsordevelopment_behavior_packs.Resource pack must be copied into either
resource_packsordevelopment_resource_packs. -
Add the installed pack(s) to your (new) world.
-
Done!
Important
Mobile platforms are not supported.
Cheatsheet for developers can be found here.
Please install these software on your system before proceeding:
-
Clone this repository (or your fork) locally
-
Install dependencies
Run the following command:
pnpm install -
Create the
.envfileCreate a new file named
.envat top-level, and paste the text below to the file. Don't forget to replace{USERNAME}with your actual username!# Default paths on Windows. You can specify any directory paths. DEV_BEHAVIOR_PACKS_DIR="C:\Users\{USERNAME}\AppData\Roaming\Minecraft Bedrock\Users\Shared\games\com.mojang\development_behavior_packs" DEV_RESOURCE_PACKS_DIR="C:\Users\{USERNAME}\AppData\Roaming\Minecraft Bedrock\Users\Shared\games\com.mojang\development_resource_packs"
After a build operation is complete, you can find the output in the build/ folder.
-
Development build
Processed packs will be copied into the locations you specified in
.env.pnpm run build:dev
-
Development build + watch
Processed packs will be copied into the locations you specified in
.env.The build script will keep watching for file changes in the background until terminated. When any file changes are detected, it will automatically rebuild.
pnpm run build:dev:watch
-
Non-development build
Create a non-development build version 0.6.9.
pnpm dotenv -v VERSION=0.6.9 -- pnpm run build