My resource pack won't show up in client [closed]

The Resource Pack is in the folder but when I open the client and go to resource packs it isnt there. Unless I click the open folder option and see it in there but still not in my client.

I got some of this resource pack from another one and made sure I didn't mess anything up, the mcmeta is there, and so are my assets, all I did was edit the swords to make it look more silly and put it back in place of the old swords.


In your pack.mcmeta, description value is not contained in quotation marks.

Here is yours currently:

{
  "pack": {
    "pack_format": 1,
    "description": ÒYOU ALL UGLYÒ
  }
}

Here is what it needs to be in order to work:

{
  "pack": {
    "pack_format": 1,
    "description": "ÒYOU ALL UGLYÒ"
  }
}

Another thing, you have used a special character in that description(Ò). That does not show up correctly in minecraft:

Resource pack

If you do want that to show up correctly, pack.mcmeta has to use unicode:

{
  "pack": {
    "pack_format": 1,
    "description": "\u00D2YOU ALL UGLY\u00D2"
  }
}

Here is the result:
Pack 2

Also just to note, pack_format 1 is for versions 1.6-1.8. (2 is 1.9-1.10, 3 is 1.11-1.12, and 4 is 1.13) This is why it shows up with a red color in my resource pack list in my first image.


Here is a link to a modified version of the pack which loads successfully for me. Looks good:

Pack