How To Make CUSTOM HATS and ITEMS for Minecraft Java 1.19

  Рет қаралды 130,142

InTheLittleWood - Live!

InTheLittleWood - Live!

Күн бұрын

A huge thank you to Violet for teaching me all of this: / violxiv
A stream where I make hats: • THE ART GALLERY + MAKI...
Minecraft commands, particularly around NBT values have changed from 1.20.5 so I've updated them below for those who need it :)
00:00 - Intro
00:50 - Creating your model
06:49 - Texturing your model
09:14 - Customizing in game appearance
11:50 - Creating a resource pack & importing your model
15:31 - Spawning your model in game
18:41 - Change the colour with a command
21:13 - Creating custom weapons and items
HAT SPAWN COMMAND
====================
/give @s minecraft:carved_pumpkin{CustomModelData:1}
as of Minecraft version 1.20.5 commands have changed slightly:
/give @s minecraft:carved_pumpkin[minecraft:custom_model_data=1]
HAT SPAWN WITH CUSTOM NAME
============================
/give @s minecraft:carved_pumpkin{display:{Name:"{\"text\":\"HATNAMEHERE\"}"},CustomModelData:1}
for 1.20.5 and later:
/give @s minecraft:carved_pumpkin[minecraft:custom_name=Hat,minecraft:custom_model_data=1]
HAT COMMAND WITH HORSE ARMOR
===============================
/item replace entity @p armor.head with leather_horse_armor{display:{color:7422112},CustomModelData:1} 1
HAT WITH CUSTOM COLOUR
========================
/item replace entity @p armor.head with leather_horse_armor{display:{color:7422112},CustomModelData:1} 1
for 1.20.5 and later:
/item replace entity @p armor.head with minecraft:leather_horse_armor[minecraft:dyed_color=7422112,minecraft:custom_model_data=1] 1
CARVED_PUMPKIN.JSON CODE
==========================
{
"parent": "item/generated",
"textures": {
"layer0": "item/carved_pumpkin"
},
"overrides": [
{"predicate": {"custom_model_data":1}, "model": "block/custom/tutorial"}
]
}
LEATHER HORSE ARMOR CODE
==========================
{
"parent": "item/generated",
"textures": {
"layer0": "item/leather_horse_armor"
},
"overrides": [
{"predicate": {"custom_model_data":1}, "model": "block/custom/tutorial"}
]
}
STONE SWORD CODE
==================
{
"textures": {
"layer0": "item/stone_sword"
},
"parent": "item/handheld_rod",
"overrides": [
{
"predicate": {"custom_model_data": 1},"model": "item/custom/tutorial"}
]
}
How to create an mcmeta file:
minecraft.fandom.com/wiki/Tut....
Leather armor colour picker:
minecraft.tools/en/armor.php
Streams: / inthelittlewood
Minecraft : / inthelittlewoods
Twitter: / inthelittlewood
Come and chat with us on Discord!
/ discord
Business enquiries: contact@yogscast.com

Пікірлер: 373
@InTheLittleWoodLive
@InTheLittleWoodLive Ай бұрын
I was made aware today that commands for NBT values has changed from 1.20.5 onward (for the better it seems), so I've updated commands in the description to accommodate those :)
@epic10l2gaming6
@epic10l2gaming6 Ай бұрын
is it possible to change the sword model without using those ocmmands so basically without custommodeldata:1 cuz i want my sword to look big on a pvp server where i dont have commands, do i just leave custommodeldata out or do i use a mod?
@crazymothlady
@crazymothlady Жыл бұрын
The way you explained how to put in the files was really helpful! That’s always where I got lost in other tutorials because they tend to assume you already kinda know your way around it
@InTheLittleWoodLive
@InTheLittleWoodLive Жыл бұрын
Mhm, I've been on the recieving end of that so many times ha! It may be repetitive for some but at least there's no room for confusion 😌
@gettinglucky7579
@gettinglucky7579 Жыл бұрын
I don’t quite understand what you mean by “copy/pasting this code in to a Notepad document and when you save, toggle Save As Type to all files” For a Note document, can I use a Notes app? And what do you mean by saving it? I also don’t think I have an option to toggle it as Save As Type to All Files. And can I use this on a modded version of minecraft, such as curseforge? Im on a mac so help would be greatly appreciated. 👍
@gettinglucky7579
@gettinglucky7579 Жыл бұрын
@@InTheLittleWoodLive Please Help!
@AndromedaTeam
@AndromedaTeam Жыл бұрын
@Getting Lucky What InTheLittleWood was saying refers to windows, what you want to do is write your code in a text editor and save it as .json instead of .txt or any other type. Just make sure it saves as 'carved_pumpkin.json' and not a text file.
@AstronLight
@AstronLight 5 ай бұрын
@@InTheLittleWoodLivewould this work for 1.12.2?
@becca4leafcloverMC
@becca4leafcloverMC 3 ай бұрын
TO ANYONE WHO'S MODELS WORK, BUT THE VANILLA BLOCK/ITEM BREAKS WHEN USING THIS! HERE IS MY FIX: Instead of the "parent": "item/generated", line of code, use "parent": "minecraft:block/item-you-want-to-replace", for example with this making hats, do "parent": "minecraft:block/carved_pumpkin", (yes you need the comma at the end it's part of the code) for swords, I had to change the line to "parent": "minecraft:item/handheld", to get it to work for netherite swords, but for some reason my wooden sword model never had any issues? IDK this game is WEIRD with its texture pack reading sometimes you still need to change the line "layer0": "item/carved_pumpkin" to be whatever block you want if you're not wanting it to be a carved pumpkin fyi. the "item/generated" line worked without a problem for my glass bottle models, so it seems to work for items that AREN'T blocks? It could be an issue with items in game that have distinct models (such as blocks having the block model) versus items that stay in your inventory, not having separate models its conflicting with? Speaking of, I was UNABLE to get blocks with custom models to work! I tried iron bars and candles, I could get the custom model to load but not the vanilla one. I think these need the same technique as carved pumpkins and other blocks, but specifying their unique models and I just don't know the right codes to get that to work. That's just me theorizing after spending way too much time digging around in the game files to get my old CIT packs to work though so I can't confirm that LOL I had this issue myself and it broke my pumpkins, as well as a handful of the wool blocks and swords as I have a fairly large pack- the blocks in the world are fine, it's just the inventory item that breaks with the generated line for some reason but it's ugly so this is how I fixed it! I hope this can help anyone else who's looking through the comments wondering what's going on :D
@russelfrerichs7200
@russelfrerichs7200 Жыл бұрын
so thankful for a video about this. I've looked up to violets work for months now and played about in blockbench, but adding things into game is specifically a place I've been stuck. thank you martyn!! very excited to see more of ur ventures >:)
@simrynkalyan6498
@simrynkalyan6498 Жыл бұрын
While watching the stream yesterday I threw my phone (out of excitement) when I heard he was posting a tutorial, I’m not even joking. Thank you SO much for this you are a LIFE SAVER
@21h
@21h Жыл бұрын
theres no replies because there isnt much to say, im just commenting this to boost engagement cause this helped me
@idsolo_
@idsolo_ Жыл бұрын
Thank you so much for this video, it is going to help so much!
@mistycle1538
@mistycle1538 Жыл бұрын
I’ve made skins for a while now and have wanted to get into modeling, but I couldn’t figure out where to start. Thank you for this!
@_xixi582
@_xixi582 4 ай бұрын
For those whose models are loading successfully, however the textures are missing, try dragging the PNG of the texture that you have already exported into the model on Blockbench and replacing the texture that you have in Blockbench with the one you have exported. After that, reexport the model and try refreshing your resourcepack. Somehow, the solution is that simple. If that doesn't work, might be file path.
@TheAmazingLeo
@TheAmazingLeo Ай бұрын
Thank you, you pointed me in the right direction. My texture paths in the tutorial.json file were full paths to the file on my computer and not the relative path (block/custom/texture) inside the textures folder.
@Kylia_TheBee
@Kylia_TheBee Жыл бұрын
Thank you so much ! I was struggling with the Json files, all the tutorials I saw about custom texture never explained anything about that, it was just "copy/paste what's in the description it should work", but you explained what to do/add if we have more custom texture, that helped me understand. So thank you !
@deathdiamond15
@deathdiamond15 Жыл бұрын
I just tried this out (I'm in version 1.19.4, but I'm also on Forge 43.2.3 with a bunch of mods) and it MOSTLY worked, except the default carved pumpkin was now missing its model and texture. BUT I was able to fix this by changing the first line in the carved_pumpkin.json file from: "parent": "item/generated", to: "parent": "minecraft:block/carved_pumpkin", I don't know why it worked, but it did.
@MrRobberZ
@MrRobberZ Жыл бұрын
Had the same problem and couldn’t figure it out, thanks!
@gamma2581
@gamma2581 11 ай бұрын
THANK YOU i will try it now. update: IT WORKED YOU ARE A LEGEND
@Necroxin
@Necroxin 11 ай бұрын
I was hoping someone had a comment about this. Ty! You deserve some more likes for this!
@zeon8081
@zeon8081 9 ай бұрын
i love you mate..
@GabrielCelorio
@GabrielCelorio 7 ай бұрын
THANK YOU SO MUCH had the same problem been looking for a fix for probably 20 minutes
@RazKun
@RazKun 3 ай бұрын
16:20 Just incase anyone is as dumb as me, this code he opened up for the textures is not the json you're editing for the pumpkin. This is the json file that was created from exporting the model. so the one in Resoucepackname>assets>minecraft>models>block>custom>"the file you made"
@ScholarlyTheif_
@ScholarlyTheif_ Жыл бұрын
Thank you! This was a very well explanation to this topic. I’ve always wanted to learn how to do this and couldn’t find anything on this topic. Again, thank you for making this. This video was very helpful. Hope you have a wonderful day :)
@Pancakes27
@Pancakes27 Жыл бұрын
Thank you for this video! I wanted to get into this very subject, but I could only find complex 20 video series of explanations that were to in-depth for me and went right over my head!
@epikgamerpg
@epikgamerpg Жыл бұрын
This is really the best tutorial for this kind of stuff, u exlplained everything so goshdarn perfectly.
@invaderfurp
@invaderfurp Жыл бұрын
very nice tutorial my guy! straight forward, and easy to follow. love it!
@dragonbot5
@dragonbot5 Жыл бұрын
I must have watched 50 tutorials and this was the one that really helped me. Great channel!
@grimaussiewitch
@grimaussiewitch Жыл бұрын
Thank you so much for this video! I knew how to make something but I didn’t know how to put it into the actual game. I would love to create my own resource pack in the near future so this is amazing!
@drackonix5741
@drackonix5741 Жыл бұрын
This helped so much, and i tried multiple times with other tutorials and this one was the best one because it actually worked.
@Mr.Masked.
@Mr.Masked. 8 ай бұрын
Thanks man, this really helped me because I'm making a server right now and this will be really helpful for building the spawn area. Thanks!
@winterbyn
@winterbyn Жыл бұрын
thank you so much for this! i was wondering how to do this and this is such an easily digestible tutorial! definitely gonna be helpful for me going forward :D
@redstonerg.8616
@redstonerg.8616 11 ай бұрын
My immesurable pain of 5 hours of searching just concluded ! Thank you kind sir
@-Draggy
@-Draggy Жыл бұрын
This was rlly help full, I’m begging on one of my friends b-day presents and wanted to make him a custom item for Mc, so this was amazing
@nicksonvalera6646
@nicksonvalera6646 Жыл бұрын
Thanks for your video bro, I am a Spanish speaker, I couldn't get any video in Spanish to help me with this so I had to search in English and some tutorials didn't understand it went too fast or too slow, but this is the right tutorial that I recommend for anyone. It is wonderful your way of explaining and to the point bro. Good luck! Awesome video. Highly recommended.
@TCP72
@TCP72 6 ай бұрын
That’s the most helpful tutorial that I found Thank you so much You tolled how to put it in a recourse pack, codes and more
@seigeengine
@seigeengine 2 ай бұрын
For anyone wondering about the wrong texture paths in the json, the way to avoid this is, when you create the texture, fill in the "Folder" field with "block/custom".
@L0rneUnborn
@L0rneUnborn Жыл бұрын
I love how direct and practical this tutorial is. Just what I was looking for, thanks!
@voltzmatrix535
@voltzmatrix535 9 ай бұрын
Heya, infact. You can add high enchant levels. So if you want like sharpness 10. Type in this command: /give @s diamond_sword{CustomModelData:1,Enchantments[{id:"sharpness",lvl:10s}]} your welcome :)
@Funilly
@Funilly 2 ай бұрын
Thank you alot! it worked perfectly and to all thoose people that didn't understand the metamc file part, you can just get one from another texture pack you have
@isabelleward7858
@isabelleward7858 3 ай бұрын
Yayyy I can't believe how easy you made this. And how intuitive Blockbench is. Now I just have to figure out how to use trigger commands so my survival realm can use them.
@fiyah__
@fiyah__ Ай бұрын
I have no reason to learn about this, but this was definitely and insightful video and I'll actually might even do some modeling on my own. Very well explained TQ
@ItsEalain
@ItsEalain 2 ай бұрын
tip for people looking in the comments for if they're having an issue with this like I was: make sure that every file, folder, and model name (THAT INCLUDES THE NAME OF THE RESOURCEPACK) has ONLY supported characters (a-z, 0-9, -, _ , .) commas not included. along with that, make sure that the directory for the json file and all of the configuration files are case-accurate. i had a bunch of issues where the folders were named "Block" and it was reading to "block".
@JoeArog14
@JoeArog14 Жыл бұрын
Fantastic tutorial and very well explained. Subscribing for more!
@probablynotdaniel
@probablynotdaniel Жыл бұрын
This is a great tutorial! Thank you!
@theredparkourist5332
@theredparkourist5332 Жыл бұрын
Honestly did not expect martin to be making this tutorial.
@sonnybuck961
@sonnybuck961 Жыл бұрын
This was my third video i found because the other two didn't work and thank you so much because this video just worked
@aleksacorluka
@aleksacorluka 11 ай бұрын
tysm! gonna be starting a server with friends and i wanna sell custom hats so this really helped
@elliotanimates
@elliotanimates Жыл бұрын
Thank you so much!
@ghostofthen00b
@ghostofthen00b Жыл бұрын
Thank you so much for this omg
@Ratz99
@Ratz99 8 ай бұрын
Hey, this prob works but I'm not sure why for me the model never loads, no matter what I do, I followed it from start to finish but the model is just a carved pumpkin, I know the pack isn't corrupted since it still hides the pumpkin blur. Edit: Hey! I figured it out, other than me being an idiot and putting the item folder in textures this tutorial is incredible! I made a great top hat and the way you explained this was super easy to follow along, I never find success in other tutorials and I think you're the only one who told me how to do hats, which is something I've been looking for!
@starthedrawer
@starthedrawer Ай бұрын
Does this work with elytra/armor? I have a server with some friends and we want to have like our own elytra and custom armor for armor stands.
@user-qi1zp6jl5p
@user-qi1zp6jl5p 7 ай бұрын
TYSMMMMMMM I NEEDED THIS FOR MY SMP
@ItsSlipshod
@ItsSlipshod Жыл бұрын
Thank you very much for this tutorial! Genuinely, amazing work. Does anyone here happen to know why the base carved pumpkin is giving the texture error while its in the inventory? The custom models are working fine, and base carved pumpkins work fine when placed. Only the icon of vanilla carved pumpkins aren't loading in correctly. Any help from anyone would be appreciated! :)
@JoyCotton
@JoyCotton Жыл бұрын
you're awesome, thanks!!!
@reismup
@reismup 11 ай бұрын
Thank you so very much my friend
@itzjakegg
@itzjakegg Жыл бұрын
can you PLEASSE do a video on how to do custom entity models for a villager or horse, or elytra or custom bows. like how they do it on empires? PLEASE
@InTheLittleWoodLive
@InTheLittleWoodLive Жыл бұрын
I'm still very new to creating things for Java but as soon as I learn this and other things, I'll create another tutorial 👍
@topmansparkie1
@topmansparkie1 Жыл бұрын
I watched many tutorials to learn how to put custom items in to a resource pack. If only I found this tutorial when I first started learning how to do this! Great, clear and simple tutorial!
@BindMedia
@BindMedia 8 ай бұрын
This is a great tutorial Martin, excited to try this out at some point! Question: if you place the carved pumpkin as a block, will the model still be bounded to it?
@BindMedia
@BindMedia 8 ай бұрын
For context, I think it would be neat to model stuff like a globe, book pile, etc. And have them be placeable
@BindMedia
@BindMedia 7 ай бұрын
Figured out the answer to my own question thanks to hermitcraft, if the block is assigned a custom model, it will retain that model as long as it's placed within an item frame, rather than placed. Then you can set the item frame to be invisible
@coucoul38
@coucoul38 Жыл бұрын
How can I make it so that the carved pumpkin cannot be placed down ?
@Cucumberman_Korean
@Cucumberman_Korean Ай бұрын
Very thank you
@martinsartanimation8936
@martinsartanimation8936 Жыл бұрын
Thank you so much you explained very good thank you really + 1
@saym0.0
@saym0.0 Жыл бұрын
i like your funny words magic man
@Wherescad
@Wherescad Жыл бұрын
Funky little hat
@AylaXypt92
@AylaXypt92 7 ай бұрын
thank you so much!!!
@smookbalu8198
@smookbalu8198 10 ай бұрын
Hey I have a problem it doesn't work it's just a black and purple square
@aloyhyrule5312
@aloyhyrule5312 8 ай бұрын
Did you ever get this fixed?. Iv got same problem
@smookbalu8198
@smookbalu8198 8 ай бұрын
yeah I got it now it is working@@aloyhyrule5312
@tatumdub3551
@tatumdub3551 Ай бұрын
I am having a problem I made my own stone sword json and imported the code and I did every thing in the tutorial but when I go in mine craft I have the resource pack but I can’t get the item it does say it needs a older version do I need to change version?
@TheAmazingLeo
@TheAmazingLeo Ай бұрын
Thank you, been a fan forever and looked up a blockbench tutorial and was pleasantly surprised to recognise the voice! Followed it through and managed to make my silly little hat (and you made blockbench a lot less confusing).
@VerumGamerMC
@VerumGamerMC 4 ай бұрын
i have done everything you have but I have ended up with a broken debug model on mc - is there a special mod needed or smth?
@taxi.man9815
@taxi.man9815 24 күн бұрын
Love the tutorial! I've managed to make some really cool things! Does this work for other pieces of armour not on the head? I tried tying the model to my leather leggings and it didn't replace the model sadly.
@epikgamerpg
@epikgamerpg Жыл бұрын
if I want to change the texture/model of a bow what would i have to put instead of handheld_rod
@matthewduncanson8744
@matthewduncanson8744 Жыл бұрын
when i make 2 and try give the 2nd hat to my friend for them it looks like the first one how could i fix this?
@decimatestudios7686
@decimatestudios7686 Жыл бұрын
Me setting up blockbench: Hmmm... Ok. I've modeled before. This shouldn't be too hard. I use Blender all the time. Me discovering blockbench will use blender keybinds: 😃
@iskeptical5698
@iskeptical5698 Жыл бұрын
The default carved_pumpkin item in hand is now 2D instead of 3D. How Do I change this?
@melonmuncha1657
@melonmuncha1657 11 ай бұрын
does anybody know if its possible to do this with a leather helmet? I've tried it and it all works fine until i put it on my head and it shows up as a leather helmet.
@Entitled_
@Entitled_ Жыл бұрын
You can always use a command to get a sharp 10 or something
@rotrosity
@rotrosity Жыл бұрын
I have tried following this tutorial twice now starting from scratch each time and when I've completed creating the resource pack and apply it and given myself the carved pumpkin, it has no texture and is just a carved pumpkin. I really don't know how to troubleshoot any further than I already have. Any answers?
@Literally_Mal
@Literally_Mal 4 ай бұрын
This tutorial is amazing! I managed to get it to work with a carved pumpkins, but I really wanted to do it for armor, so I tried replacing every instance of carved pumpkin with nether it’s helmet and I worked fine up until I put it on my head, after which it reverted to a normal helmet. I feel like there should be a separate tutorial for things like armor and elytra.
@Literally_Mal
@Literally_Mal 4 ай бұрын
I know this tutorial is a year old but Martyn is the only person I’ve seen who has made a helpful tutorial for this specific thing
@becca4leafcloverMC
@becca4leafcloverMC 3 ай бұрын
hey! a little late but someone who makes custom models regularly. Unfortunately it's not possible to edit armor pieces using this method- it's rather difficult to edit armor's models at all, actually :( Armor is funky because it's using a separate model around the player that's only activated when the item is put into the slot, but unlike block models (such as carved pumpkins) the inventory item model and the thing on the player are completely separate. That's why people when making custom model texture packs, really only make hats- there's not a way to further edit armor stuff
@spacecakesVal
@spacecakesVal Жыл бұрын
how do you get an blank image for pumpkin blur?
@Spookynights176
@Spookynights176 3 ай бұрын
still dont know but if i find out ill link the image or whatever it is
@SirMando111
@SirMando111 10 ай бұрын
Does it work the same way for tridents and shields cause I seem to be having some trouble with that- I’ve managed with cit and cem using optifine but that doesn’t allow me to have multiple models I don’t think
@None-Ya502
@None-Ya502 Жыл бұрын
Does anyone know how to get a blank image to put in the 'misc' folder?
@Luinyx
@Luinyx 3 ай бұрын
i cant figure out why this only gave ma a block thing with a purple and black chekerd texture
@DrowsyBelt95670
@DrowsyBelt95670 3 ай бұрын
Is there a way to get the hats without commands? I’m on a public server and they don’t allow commands
@mimi_dev3869
@mimi_dev3869 Жыл бұрын
Do you know how to make custom elytras and if so could you make a tutorial? I've been trying to make retextures as a data pack following steps in this and other tutorials on custom items but all the resources I can find either don't work for elytras (like this is for hats), require optifine, or are just regular resource packs that replace all elytras instead of creating variants (Can't use optifine because its for a realm so it doesn't support mods). Help would be appreciated!
@Muffin-animates
@Muffin-animates 6 ай бұрын
replace the elytra png with your png
@craftyjitin3d765
@craftyjitin3d765 Ай бұрын
Hay anyway to keep it perm? Like no extra things, I'll put the resources pack it already will be on head? And can it be animated? Without any command I want in hypixel
@NoobmanVR
@NoobmanVR Жыл бұрын
I need help so I did eveything but I open up minecraft it just is a big untexted block the thing I think broke it was when I was upload it said "the path of the imported files contains invaild character, uppercase etc but I tried changing everything to be vaild and it still didn't work
@atbguy
@atbguy Жыл бұрын
what app are you using to open the json?
@user-tc9yq3vr7s
@user-tc9yq3vr7s 4 ай бұрын
Im confused why mine does not work. I followed everything correctly and when i get in game the model is a purple and black box. How can i fix this?
@Eli-tn1bv
@Eli-tn1bv Жыл бұрын
I added 2 models, everything works fine, I add a third one, and model nor texture work. I've no idea what could be wrong, considering I made sure the texture fit the hat, made sure the file was correct, ect
@Faze.Smuziy
@Faze.Smuziy Жыл бұрын
can u make another tutorial, like if i want to rename that item, so it transform to that model, cause i tried doing this to netherite and diamond swords, and it doesn't works, i know that i need optifine but it still doesn't work
@ShadowNinjaAnimations
@ShadowNinjaAnimations 4 ай бұрын
I have my own custom model and have tried several different things but my model still doesn't have texture and I have no idea what I'm doing wrong can you possibly help?
@NoNameOfThisGuy
@NoNameOfThisGuy 3 ай бұрын
I tried to make crown but after i tried to delete pumpkin blur and set texture for it nothing happend i longer trying to fix that but o just can't
@dj8201
@dj8201 2 ай бұрын
How can I make this so I get a certain 3d model just by getting say a diamond helemt crafted in survival?
@hatac
@hatac 7 ай бұрын
In the windows folder system what hot key creates the folder like that? No ones taught me that one.
@supercrash2004
@supercrash2004 7 ай бұрын
hi if anyone could help me out that would be nice, basically im trying to do the pumpkin one followed the exact steps made sure its the same knowing me i probably missed something but my problem is that when i /give myself the item it doesnt do anything other than giving me a regular pumpkin whats the solution iv watched like 40 random outdated tutorials the most obvious thing i think it might be is im on 1.20.2 but idk what else it could be
@Seraphinatics
@Seraphinatics 4 ай бұрын
does this work in survival minecraft? like in a game where you don thave access to command blocks or if cheats are off?
@nodnarb
@nodnarb Жыл бұрын
Use this code to fix the NORMAL pumpkin (just replace the code in the carved pumpkin json with this new one) { "parent": "minecraft:block/orientable", "textures": { "front": "minecraft:block/carved_pumpkin", "side": "minecraft:block/pumpkin_side", "top": "minecraft:block/pumpkin_top" }, "overrides": [ {"predicate": {"custom_model_data":1}, "model": "block/custom/HAT NAME"} ] }
@DarthBlitzYoutube
@DarthBlitzYoutube Жыл бұрын
is there a fix to the leather horse armor
@nodnarb
@nodnarb Жыл бұрын
@@DarthBlitzKZfaq wdym its normal as it should
@DarthBlitzYoutube
@DarthBlitzYoutube Жыл бұрын
@@nodnarb wth…it was like messed up and I was just writing this message to tell you that and it now just magically fixed
@notthatperfect3082
@notthatperfect3082 Жыл бұрын
thank you so much!!
@ExplodinEmerladsVODs
@ExplodinEmerladsVODs Ай бұрын
at 16:16 how the texture isn't correct happened to me then when I tried fixing it the way you said to it became a Black & Purple cube. How do you fix it if it does that??
@elalezito
@elalezito Жыл бұрын
is possible do make something like this with bedrock to make compatible with geysermc??
@bobbobinson5937
@bobbobinson5937 10 ай бұрын
what if we wanted to use a different item like a turtle shell or helmet?
@Matuteros
@Matuteros 5 ай бұрын
how do u modify he player skull? i just wanna change the way it looks in the item frame and im not finding how to do so D:
@CookieCrumble._.
@CookieCrumble._. 4 ай бұрын
Im having some trouble with the pack.mcmeta, I don’t know if I should just make a new document or do I need to do more? Do I just make a new text document and just write pack.mcmeta ?
@cleanyot
@cleanyot 23 күн бұрын
Rename it to "pack" it should work
@corgi_loafness8986
@corgi_loafness8986 Жыл бұрын
I can't get the resource pack to show up on minecraft under my resoursce packs. I've gone through the file several times and can't find anything wrong?
@spookycookies8231
@spookycookies8231 3 ай бұрын
how would you implement your custom model in survival mode tho??
@GreenKid1
@GreenKid1 Жыл бұрын
I tried to use this but the pumpkin is just a purple and black checkerboard cube, not sure what's wrong. Could someone maybe help? Edit: I did everything the same except: 1. I was in 1.19, not 1.19.2 2. I didn't put the pumpkin blur in, I still added the misc folder though 3. I changed block/custom/tutorial to block/custom/build, which was my project title, in the carved_pumpkin.json file The carved pumpkin is still a purple/black checkerboard, and the one with the command as well. It's like they have no texture or shape... But the custom one is definitely bigger. Please help me!
@GreenKid1
@GreenKid1 Жыл бұрын
@RosieStarr Oh ok thanks!
@marukaru1375
@marukaru1375 Жыл бұрын
I have followed this over and over, again and again for 3 hours, I have done every step meticulously, doing every extra step, and yet my texture is still missing, and I don't know how to fix it, does someone know how to fix the texture?
@aloyhyrule5312
@aloyhyrule5312 8 ай бұрын
Did you ever find a answer?
@_xixi582
@_xixi582 4 ай бұрын
@@aloyhyrule5312 Hi! Try dragging the texture you have already exported into the model on blockbench and reexporting the model. That did it for me!
@Blockphylosphy
@Blockphylosphy 5 ай бұрын
how do you get the code for the carved pumpkin to become an actual file instead of just a piece of code?
@SaRa119.
@SaRa119. 8 ай бұрын
Anddd time to make a little hat myself :>
@Toobero
@Toobero 6 ай бұрын
Each time i fix one issue, a new one appears. Now my pumpkin blur isn't going away, and the textures are all weird and out of place. its the right colors, and clearly the texture I made, but all of them seemingly have shifted in the wrong positions. What do I keep doing wrong??
@varmilomc
@varmilomc 2 ай бұрын
hey so ive done this multiple times and nothing seems to work. when i load the carved pumpkin the texture doesnt load and shows the typical black and purple bugged texture. everything is put like the video, and nothing works. ive put the parent as carved_pumpkin and put evrything in lowercase and nothing. ive thried to cahnge the textrue, remake the hat differnet times but it reffuses ro load the texture. please help
@aloyhyrule5312
@aloyhyrule5312 8 ай бұрын
Iv followed the steps and even tho i do the block custome my hat still remains the purple/black block. No matter what i do i cant fix this. When i do the export it triggers as a download that i then move into the file. Not sure what else to do 😢
@zeneomaple
@zeneomaple 3 ай бұрын
i know this was a year ago but could someone help me? I am able to add in two hats, but as soon as I add in the third, it cant find the texture. the model is there, just not the texture
@herozin24
@herozin24 Жыл бұрын
hey, im having a problem, my textures are showing up like blocks (the bug texture) and i dont know how to solve it ;-;
I Designed Custom Minecraft Weapons...
10:23
Daniel Krafft
Рет қаралды 2,3 МЛН
When Steve And His Dog Don'T Give Away To Each Other 😂️
00:21
BigSchool
Рет қаралды 14 МЛН
Чай будешь? #чайбудешь
00:14
ПАРОДИИ НА ИЗВЕСТНЫЕ ТРЕКИ
Рет қаралды 2,7 МЛН
СНЕЖКИ ЛЕТОМ?? #shorts
00:30
Паша Осадчий
Рет қаралды 2,4 МЛН
🍕Пиццерия FNAF в реальной жизни #shorts
00:41
I Designed EXTREME Minecraft Weapons...
8:25
Daniel Krafft
Рет қаралды 2,8 МЛН
I made YOUR Epic Minecraft Ideas!
8:11
ArtsByKev
Рет қаралды 231 М.
5 Cool Tricks with ONE Command!
9:21
BlockerLocker
Рет қаралды 662 М.
Le sombre secret derrière ces vieilles vidéos Minecraft...
29:38
Design YOUR Custom MINECRAFT Armor
6:15
ArtsByKev
Рет қаралды 38 М.
CUSTOM ITEM MODEL IN BLOCKBENCH | BLOCKBENCH #2 | Modding By Kaupenjoe
8:59
Modding by Kaupenjoe
Рет қаралды 73 М.
$10,000 Every Day You Survive In A Grocery Store
21:32
MrBeast
Рет қаралды 260 МЛН
How We Run & Host Hermitcraft
11:57
xisumavoid
Рет қаралды 793 М.
Redstone Builds Everyone Should Know
21:37
Mumbo Jumbo
Рет қаралды 6 МЛН
DELETE TOXICITY = 5 LEGENDARY STARR DROPS!
2:20
Brawl Stars
Рет қаралды 10 МЛН
Қорқынышты Майнкрафт - 5 бөлім ✅
32:10