Skip to content

How do I add a Resource Pack to my Minecraft Bedrock Server?

Resource packs allow you to customize textures, font styles, sounds, models, interface, and other things for Minecraft. This is also possible with servers so that everyone who joins your server will be able to use your custom resource pack.

You can create your resource pack or use the available ones shared on Minecraft sites like Planet Minecraft and the [Minecraft Forum](https://www.minecraftforum.net/forums/mapping-and-modding- java-edition/resource-packs).

Installing a Resource Pack

There are two methods of installing a resource pack, a less technical way where you install it to a singleplayer world and upload it to your server, and a more technical one, where you install it directly to your server.

Installing a Resource Pack to your world

  1. Once you have the resource pack you’d like downloaded to your computer, double click the file, and it will automatically install itself to your Bedrock edition of Minecraft
  2. Open Minecraft Bedrock
  3. Under your world, hit the pencil icon to edit your world
  4. Scroll down and select Resource Packs

  1. Click Available . Here you’ll see all of the currently installed Resource Packs you can add to your world

  1. Activate the packs you’d like to use and scroll back to General
  2. Under File Management select Export World and save your world as an .mcworld file on your computer. We’ll need this later.

  1. We can now move on to uploading the world

Uploading the world to your server

  1. Open the Blacksmith’s Portal
  2. Go to Files
  3. Open worlds . If you do not see a worlds folder, you can manually create one with the Create Directory button
  4. Inside worlds , create a folder with the Create Directory button and name it. e.g. myworld

  1. Open your created folder

  2. Upload your exported .mcworld file

  3. Right click on your uploaded file and select Unarchive

  4. We’re done! Now we can begin the same process with the resource packs.

Uploading Resource Packs to your server

  1. Open the Blacksmith’s Portal
  2. Go to Files
  3. Open development_resource_packs. If you don’t see it, you can create it with the Create Directory button
  4. Within this folder, create a new folder with the name of the resource pack
  5. On your computer, locate the .mcpack file you downloaded and upload it to this newly created folder
  6. Right click on it select Unarchive

  1. Repeat this for any additional resource packs.
  2. If you’re uploading a world with these already activated, restart your server and your resource packs will now appear

Manually Installing Resource Packs to an Existing World

To install resource packs to an existing world, we’ll need to first upload the resource packs to our server. Once uploaded, we can manually install them to an existing world.

  1. Each of your uploaded resource packs will have a file named manifest.jsonwithin the folder they were uploaded in.
  2. Open the manifest.json and note the UUID and Version keys under the header object as we will need these later.

  1. Go to your worlds folder. e.g. worlds/myworld
  2. Open world_resource_packs.json, if you don’t see one, create one with the New File button
  3. The file should have the following contents
[
{
	"pack_id" : "uuid pasted from resource pack",
	"version" : version pasted from resource pack
},

{
	"pack_id" : "2b8ba764-98e1-4fed-80b4-ed8286ea6e48",
	"subpack" : "BareBonesNStuff",
	"version" : [ 1, 7, 0 ]
}
]

6. For multiple resource packs, make sure that there is a comma after each } with the exception of the last entry. e.g.

[
{
	"pack_id" : "a2f4940d-2ad0-4193-9aea-757843e998f9",
	"version" : [ 1, 4, 17 ]
},

{
	"pack_id" : "2b8ba764-98e1-4fed-80b4-ed8286ea6e48",
	"version" : [ 1, 7, 0 ]
}
]

7. Save the content and restart your server.