Modding by Kaupenjoe – Minecraft 1.19.4 – Fabric Modding Tutorial: Geckolib 4 – Custom Armor Model | #14

Video Information

Let’s make a custom three armor model with a geckolet oh right we found this back in jail once more and in this tutorial we’re going to be adding the gecko lip armor model so this is basically going to be a custom 3D armor model to Minecraft including of course

Adding the armor so once again you’re going to be able to use some of this tutorial if you just want to add a normal armor however there are some steps that are different of course and this is a gecko lip armor tutorial so do keep that in mind once again I have a

Custom blockbench file right here where the armor is it’s sort of an amethyst armor and now the blockbench file will of course be available including the Textra and all of the other stuff as well so that’s gonna be available download in the description below do keep in mind once again that you need

The gecko lib animation utils plugin so do install that if you don’t have it and in this case there actually is no animation associated with this armor it’s just a very cool looking armor however the animations you can add those the same way that you have added animations with entities or blocks or

Items or all of that so it basically functions the same way one important thing is that under the model settings it is set to armor and then you should basically be good to go now in your blockbench file when you download this particular file you will have this and

Then that’s going to be basically fine as previously done we want to get the geojson file we do that by going to file export export gecko live model and that’s gonna be the amethyst armor geojson file there you go then under the animated tab going to animation export animations confirm that’s the amethyst

Armor animation Json now in our case that just has one idle animation that does nothing but still we need the animation Json file exported regardless and then last but not least we also want the texture so just right click on this save as and that’s going to be the

Amethyst underscore armor.png and then we can proceed to IntelliJ once again so we want to of course take the geojs file and put it into our Geo folder we want to take the animations Json file and put that in the animations folder and the texture I’m actually going to put that

Under textures armor and then we’re going to put the PNG in there and that’s gonna be fine what we will also need is the actual armor items so that’s going to be the boots and all of that so I’m also going to copy those over those pngs

Are of course also a available to you as well now that we have done this let’s proceed to add the actual armor itself so for an armor we need a armor material so we can basically do the following you can just press shift twice and look at

The armor materials class so it’s this one from net microph item and you can see that it has well it has a bunch of stuff basically in it and the idea is that it has the lever chain iron gold so you can see those were all the different

Types of armor that are in vanilla and this is an enum which is very important and it also implements the armor material those are basically the two things that are important the string identifiable is less important for us as of right now the basic idea is that in

Our own item package we want to right click new Java class and we’re going to call this the mod armor materials and what we’re going to do is we’re going to change this from a class to an enum this is extremely important we want to implement the armor material interface

Right here and then we’re not going to hover over this or do anything but what we’re going to do is we’re gonna literally take the netherrite so from above the nether right right here we want to go all the way down and we want to hold shift and then just click and

Get all of this in here and you want to make sure that you copy it correctly okay you want to start from the nether right and go right down here and not include the closing curly bracket this is extremely important press Ctrl C to

Copy and then Ctrl V to paste in now we will get a few errors here but that is absolutely normal because we have to change the name right here from what armor from armor materials to mod armor materials once that is done all errors should go away if you’ve copied it

Correctly if you still have errors then you have copied it incorrectly please do keep in mind that all of the code is of course available to you in the description below in the GitHub repository so you can double check right there now we need to make a few changes

Here so first of all we can get of the rid of this in a map the same with this one right here so we just wanted to have util.make all of the warnings here are fine some of this stuff couldn’t be written differently and it doesn’t quite

Like the way that it’s written but overall everything here should work totally fine now when it comes to the actual armor this is it if you have if you want to have multiple ones this is a normal enum right so this is just a normal enum so if you have another one

You separate them with com and they have to have different names so you can see now I have another right one you can see this is one of them right so netherite this is the open parentheses for this is the closing parenthesis for then a comma then comes the second one right which

Where this one is open parenthesis this is the closing parenthesis and the last one is always ended with a semicolon this is basic stuff if you don’t understand that then I definitely recommend taking a look at some more Java specifically the advanced enums now we want to name this amethyst and we

Want to name this amethyst as well you can of course change all of the things right so maybe we want a little less durability for it maybe the enchant ability is a little bit more right knockback resistance toughness we can change all of those numbers the same

With the numbers here in the map because what you will see that that is the protection amount so basically this is how much protection each of the different armor types is going to give you right boots are gonna give you three leggings six chestplate 8 and helmets three and then there’s also base

Durability this should always be the same and then that is basically multiplied by this durability multiplier in the get durability as you can see base durability get type times durability multiplied so nothing too crazy so you can of course change this however much you would like do keep in

Mind that once again the name has to be unique and that is very important now we want to make some items but before we can make the item we actually need to make a custom item class so in our custom package we’re going to make the amethyst armor item and this will extend

The armor item class and we’re going to deal with this first so we’re going to hover over this create Constructor matching super and you can see now we have the amethyst armor item Constructor in here and that is in theory for the actual armor itself all that we need so

We’re now going to make the actual items so that’s going to be done right here let’s just duplicate the animated block that’s fine four times and that’s going to be amethyst underscore helmet let’s just copy the name over and let’s just change the name so that’s gonna be chest

Plate amethyst chestplate this is going to be amethyst leggings and the last one is the amethyst boots let’s not forget to change the name inside of the register item method as well this is the amethyst underscore helmet and and then we can copy the name here again and just

Change the helmet so this is going to be underscore chest plate and this is going to be underscore leggings and there’s gonna be underscore boots perfect and then instead of an animated block item this is of course an amethyst armor item now the amethyst armor item takes in

Three parameters the first one is what we’ve made before and that is the mod armor materials dot amethyst comma and then we need to supply a type so the type is going to be just type.helmet and then comma and there you go we can once

Again just copy this over or you can do it a line by line that is totally fine I’m just going to do with this a little bit faster over here and that’s gonna be okay change the classes and then the types over here as well that’s going to

Be leggings and this is going to be boots once again it’s too fast no worries at all all of the code is available in the description below so you can basically double check it in the GitHub repository there as well right now we have our four items and we want

To add them to the data gen that is the next thing so in the mod model provider we’re literally just going to duplicate the raw citrate screen four times here and we’re just gonna say helmet and this is the chest plate and this is the leggings and this is the boots and we

Can actually immediately just run data gen because in this case the actual item models just point to well the item textures that we have right here and those should be named properly so everything should work exactly fine if you don’t have the data then of course

Then you need the normal item model Json files that are well basically literally just pointed to the textures so nothing too crazy in this case that should be the item model files that we’ve just added so that’s absolutely Splendid and that is basically the armor now we’ve

Done pretty much nothing with gecko lib except for the Geo and the animations Json files but you know that they don’t really do anything as of right now if you now wanted to proceed without gecko lip right and just have a normal armor that’s different basically when always

Go down to the external libraries all the way to down here 119 4 and so on and so forth in the assets folder Minecraft under textures you should find under models you can see armor and those are the armor models so you can see that for example iron right there are two

Different layers and those two layers is what you would need to basically create in order to will have your armor also display properly inside of the game you want to make the models folder the armor folder and then create amethyst underscore layer underscore 1 and Amethyst underscore later underscore 2

And then that should be that right now we can proceed with the gecko lip stuff and that is pretty much just a model and a renderer so in the client in the client package we’re going to make a new Java class called the amethyst armor model and another one which is going to

Be the amethyst armor renderer there you go we’re of course once again going to start with the model now in this case this will of course once again extends the Geo model class and it’s going to have the amethyst armor item in here now this is actually going to throw an error

Because the armor item right now is not a Geo item so we need this to implement the Geo item interface and then hover over this and implement the methods now these are once again the same methods that we’ve seen for both the animated item right here in the animated block

Item so nothing insane it is pretty much all the same we want to implement the three methods now in this case once again I will just copy over what is being done here because we have seen this three times or four times now at this point it should be pretty much

Self-explanatory and the rendra and this will extends the gor Miranda and of course once again of amethyst’s armor item hover over this create Constructor matching super we can delete whatever is inside of the renderer here and just make a new amethyst armor model there you go we can close that and we can

Close the model and then in the actual armor item itself well we of course want a few things again the first one is a private final animatable instance cache called cache and this will be equal to a new single and animatable instance cache right here passing into this then a

Private final supplier of type object indeed from Lang render provider equal to geoitem dot make rendra passing in this in the render provider we can just say this.render provider in the get animatable instance cache we can just say this dot cache and then I’ll once again copy over the register controllers

And the predicate because well once again they are pretty much the same that we’ve seen every time right so the register here is just a controller that basically passes in the predicate and this is the predicate which basically just plays The Island animation on Loop now in our case our animation is pretty

Much empty right it just says hey it’s just an idle animation this is actually very important we want to rename this to idle just making sure that this is named idle because it’s looking for the name idle right so this and this has to match the blockbench file should reflect that

But just in case you can double check because otherwise you will get an output in the in the terminal the entire time that is going to say couldn’t find idle animation couldn’t find idle animation couldn’t find idle animation and of course that’s kind of annoying and I’m

Also going to copy over the create renderer method because well at this point it is pretty much the same than the other item methods now you can see it is a little bit different because we’re overriding the get humanoid armor model method right here right but we’re

Still creating a new amethyst or Miranda we’re then preparing it for the render that’s actually very important in this case and then we’re returning it there really isn’t anything crazy else going on here it is pretty much the same idea so this should be I mean self-explanatory in this case and those

Are actually all of the steps that we need to take to basically add a armor and an extension a gecko lip armor to Minecraft yet there’s one more thing and that is to add it to the item group I have not forgotten this this time not

With me so this is going to be the amethyst boots and then this is going to be the leggings and then the chest plate and then the helmet is why not go the other way around there you go so now those are added to the inventory as well

I’ve also added the translation right here that’s that should be self-explanatory as well so let’s see already if you find ourselves in Minecraft and there you go the armor has been added so let’s put it on and here we go we are missing a texture that is

Absolutely no worries so we can of course fix that in the amethyst armor model file right but you can see it definitely already is well a custom model but the texture is probably wrong in the identifier and you can see the texture here is called amethyst underscore armor here it’s called

Amethyst underscore armor underscore texture so that is probably the reason why so let’s go into the game again and see if this fixes it alright we’re back in Minecraft and there we go the armor Works totally fine so this is exactly what we would expect to see and it might

Look a little bit weird right so it’s like I’m not saying that it’s the best looking armor ever however you could definitely say that it is a custom armor right it definitely looks custom I’ve definitely seen better but regardless of that it is a custom armor and that’s

Pretty freaking cool right but that is how you can add the custom armor with gecko lib thank you so much for watching hope you found this useful and you learned something new and I’ll see you all in the next tutorial so yeah

This video, titled ‘Minecraft 1.19.4 – Fabric Modding Tutorial: Geckolib 4 – Custom Armor Model | #14’, was uploaded by Modding by Kaupenjoe on 2023-04-24 14:59:51. It has garnered 3017 views and 72 likes. The duration of the video is 00:12:50 or 770 seconds.

In this Minecraft Modding Tutorial, we are adding a custom Armor Model with Geckolib 4 to Minecraft 1.19.4 with Fabric and Geckolib 4.

== SUPPORT ME ON PATREON == ▶️ https://www.patreon.com/Kaupenjoe

== COMPATIBILITY == ▶️ Compatible with 1.19.3 and 1.19.4 ✅ SHOULD BE Compatible with 1.20.X

== ASSETS & DOWNLOAD LINKS == GitHub Repo: https://github.com/Tutorials-By-Kaupenjoe/Fabric-Tutorial-1.19.3/tree/14-customGeckolibArmor Assets Zipped: https://url.kaupenjoe.net/mbkj34/assets

== 25% OFF FOR GAMING SERVERS == ▶️ https://www.bisecthosting.com/Kaupenjoe

== TAKE A LOOK AT MY COURSES WITH COUPON CODES == ▶️ NEW Forge Modding with Minecraft 1.20.X: https://url.kaupenjoe.net/CourseForge120X ▶️ Learn Forge Modding with Minecraft 1.18: https://url.kaupenjoe.net/CourseForge118 * ▶️ Learn Fabric Modding with Minecraft 1.18: https://url.kaupenjoe.net/CourseFabric118 * ▶️ Complete and Roblox Lua Game Development: https://url.kaupenjoe.net/RobloxCoupon *

== 1 MONTH SKILLSHARE FOR FREE == ▶️ https://www.skillshare.com/r/user/kaupenjoe *

== SUPPORT ME ON PATREON == ▶️ https://www.patreon.com/Kaupenjoe

== SOCIALS == Discord: https://discord.com/invite/yqxykanpWf Personal Twitter: https://twitter.com/Kaupenjoe

Instagram: https://url.kaupenjoe.net/tutorials/instagram Facebook: https://url.kaupenjoe.net/tutorials/facebook Twitter: https://url.kaupenjoe.net/tutorials/twitter TikTok: https://url.kaupenjoe.net/tutorials/tiktok Written Tutorials: https://url.kaupenjoe.net/tutorials/blog

== LICENSE == Source Code is distributed under the MIT License. Additional Licenses for other assets can be seen below or in the accompanying CREDITS.txt on download.

== ADDITIONAL CREDITS ==

== AFFILIATE DISCLAIMER == * Some of the links and other products that appear in the video description are from companies which I will earn an affiliate commission or referral bonus from or are my own products. This means that if you click on one of the product links, I’ll receive a small commission or additional kickback without any additional cost for you. This helps support the channel and allows me to continue to make videos. Thank you for the support!

== HASHTAGS == #Minecraft #MinecraftModding #MinecraftTutorial #Kaupenjoe

  • Crafting the Ultimate Minecraft Build: A Short Tutorial

    Crafting the Ultimate Minecraft Build: A Short Tutorial In the world of Minecraft, where creativity thrives, I bring you tutorials to help you survive. From building a house to crafting a sword, I’ll guide you through, word by word. With Loggy Gamer by my side, We’ll take you on a Minecraft ride. So hit that subscribe button, join our crew, And let’s explore this blocky world anew. From interior design to build tips galore, We’ve got all you need and more. So stay tuned for our next Minecraft tale, And let your creativity set sail. Read More

  • Join Minewind: Where Noobs, Pros, and Hackers Unite!

    Join Minewind: Where Noobs, Pros, and Hackers Unite! Welcome to Newsminecraft.com! Today we stumbled upon an exciting video titled “NOOB vs PRO vs HACKER Spider Man in Minecraft🕷#shorts”. While this video may not be directly related to Minewind Minecraft Server, it showcases the endless possibilities and creativity that Minecraft has to offer. Imagine being able to build your own Spider Man statue or even recreate epic battles like the ones shown in the video on a multiplayer server. That’s where Minewind comes in. With a vibrant community of players and unique gameplay features, Minewind offers an immersive Minecraft experience like no other. Whether you’re a noob, a… Read More

  • Minecraft Pigs Fight

    Minecraft Pigs Fight Exploring the World of Minecraft with Allay Embark on a thrilling journey through the blocky landscapes of Minecraft with Allay, a dedicated gamer who shares their adventures and creations with the world. From building magnificent structures to battling fierce creatures, Allay’s channel is a treasure trove of excitement and creativity. Join Allay on Their Minecraft Quest Allay’s channel is a hub of Minecraft content, featuring gameplay, tutorials, and more. Dive into the world of Minecraft alongside Allay as they showcase their skills and imagination. Whether you’re a seasoned player or a newcomer to the game, there’s something for everyone… Read More

  • Exploring the Twilight Forest Cavern with S5João

    Exploring the Twilight Forest Cavern with S5João Minecraft: Exploring the Riches of the Twilight Forest with S5João Welcome to the enchanting world of Minecraft, where creativity knows no bounds and adventures await at every turn. Join S5João as he delves into the depths of the Twilight Forest, uncovering treasures and facing challenges along the way. Unleash Your Creativity One of the most captivating aspects of Minecraft is the ability to build anything your heart desires. From humble cottages to majestic castles, the only limit is your imagination. S5João showcases his building skills as he constructs his dream home in the Twilight Forest, a sanctuary amidst the… Read More

  • Cube Xuan’s Minecraft Magic: Top Teacher Tips & Smiles!

    Cube Xuan's Minecraft Magic: Top Teacher Tips & Smiles! In the world of Minecraft, where blocks reign supreme, Cube Xuan brings joy, like a delightful dream. With memes and animations, laughter takes flight, In every video, happiness shines bright. Teachers, take heed, for Cube Xuan has a tip, Less homework for kids, let them have a skip. Let the leaves fall, let the students rest, In the classroom, let laughter be the best. From spicy hotpot to healthy greens, Cube Xuan’s humor in every scene. With every rhyme and every beat, Minecraft news, oh so sweet. So leap into the verse, with a grin and a spin, Cube… Read More

  • Surviving the Zombie Apocalypse in Minecraft

    Surviving the Zombie Apocalypse in Minecraft Minecraft: Exploring the Zombie Apocalypse with Live Streamers Introduction In the vast world of Minecraft, where creativity knows no bounds, a new trend has emerged – exploring the zombie apocalypse with live streamers. Let’s delve into the exciting adventures of Danielkin, ItsNotFurBall, and thedustyyyyy as they navigate through this thrilling modpack. Danielkin: The Fearless Explorer Danielkin, known for his daring escapades, leads the pack in this zombie-infested world. Armed with his wit and resourcefulness, he fearlessly ventures into the unknown, uncovering hidden treasures and facing formidable challenges along the way. Key Points: – Danielkin’s strategic gameplay keeps viewers on… Read More

  • Ultimate Minecraft Scaffolding Guide

    Ultimate Minecraft Scaffolding Guide Minecraft Scaffolding Guide: Reach New Heights with Ease! Are you tired of struggling to build tall structures in Minecraft? Say goodbye to endless dirt block towers and welcome the convenience of scaffolding! This ultimate guide will walk you through everything you need to know about crafting and using scaffolding in Minecraft. Get ready to build high, fast, and easy! Crafting Scaffolding With just bamboo and string, you can craft scaffolding in Minecraft. This simple recipe will revolutionize the way you build in the game. Say goodbye to tedious block stacking and hello to efficient scaffolding construction! Stacking and Placement… Read More

  • Introducing Minecraft to My Coworkers! XP Machine?

    Introducing Minecraft to My Coworkers! XP Machine? Minecraft Adventures with Na_Shandra Join Na_Shandra on an epic journey as they introduce their colleagues to the world of Minecraft. The ultimate goal? Defeat the Ender Dragon before 2025! 🐉 Exploring the Minecraft Universe Na_Shandra’s live stream showcases the excitement of discovering the vast and creative world of Minecraft. From building magnificent structures to surviving against dangerous mobs, every moment is filled with thrilling adventures. Machine a XP One of the key elements in Minecraft is the XP machine, essential for enchanting items and enhancing gameplay. Na_Shandra’s quest to build this machine adds an exciting twist to their Minecraft… Read More

  • Oli’s Wild Ride

    Oli's Wild Ride The Infamous Cave Dweller of Bomburcraft SMP In the world of Minecraft, adventures are always around the corner. Oli and @Zeerua recently had a conversation about a mysterious cave dweller on the modded Bomburcraft SMP server. Let’s delve into the details of this intriguing tale. What is Bomburcraft? Bomburcraft is a newly started modded SMP where a group of friends embarks on exciting adventures. The server is divided into different “ages,” each brimming with unique features from a variety of mods. Players can explore new dimensions, craft powerful tools, and encounter creatures beyond their wildest imagination. The Tale of… Read More

  • Join Now for FREE on Wilk SMP! | Minecraft Madness LIVE

    Join Now for FREE on Wilk SMP! | Minecraft Madness LIVEVideo Information चैट क्यों नहीं ओपन हो रही भाई बता चैट ही नहीं ओपन हो रही कोई नहीं थोड़ी देर के लिए इसमें पढ़ लेंगे क्या कष्ट हो [संगीत] जाएगा चलो कोई नहीं इग्नोर करते को मुझे को ऐसा लग रहा है दोबारा से लाइव स्ट्रीम चालू करनी पड़ेगी [संगीत] दोबारा से अरे यार एक तो ये चैट नहीं ओपन हो रही है चलो चलो पर कोई नहीं अभी मैंने दूसरे वाले फोन में चला लिया चैट अभी चलते हैं सर्वाइवल [संगीत] में सबको पता चल गया हमारा के बारे में हां भाई तेरी हरकत ऐसी है तभी मैं तेरे… Read More

  • EPIC LOLs! FUNNIEST Minecraft MEMES! 😂

    EPIC LOLs! FUNNIEST Minecraft MEMES! 😂Video Information I found the funniest Minecraft memes to ever be upload on YouTube but will you be able to survive all the memes without laughing let’s see how far you can get starting with steveen a village putting webs on an Iron Golem okay wait wait what what is happening oh no wait the Iron Golem is oh no he’s summoning his Iron Golem friend on an Iron Golem night guys this is really bad Steve oh no Steve Steve what’s happening to me Steve you look like a zombie oh no the Iron Golems are converting me this… Read More

  • EPIC PvP Experiment: Default Minecraft Textures vs New Texture Pack

    EPIC PvP Experiment: Default Minecraft Textures vs New Texture PackVideo Information are the default Minecraft textures good for PVP well today I played the most PVP intensive game modes on the hive to see if the default textures are good why is this guy saying GG oh my God blood really thinks he’s going to win we have to prove him wrong this feels really nostalgic for some reason I just don’t feel as good at the game it’s like it’s a strange feeling I just feel more slow and like not as good but anyway I’m going to hit this guy with my giant sword oh my God… Read More

  • INSANE!! Beating Minecraft with 15 Add-Ons!

    INSANE!! Beating Minecraft with 15 Add-Ons!Video Information cat and today I’m going to try and beat Minecraft from scratch on a brand new world but with the fun Twist of enabling every single add-on that Minecraft has right now here are the 15 in case you’re curious from hiker friend to Decor craft to gravestones all the way down to naturalist pets and computers I’m going to see if these add-ons make it easier or harder to beat Minecraft I figured it should be a lot of fun and maybe you can join me for this one this is something which I think is a… Read More

  • Terrifying Minecraft Challenge: Alone in RG Wheel 😳

    Terrifying Minecraft Challenge: Alone in RG Wheel 😳Video Information This video, titled ‘You are alone in Minecraft 😔😞 #minecraft #alone #minecraftshorts #viral #trending #gamer’, was uploaded by RG WHEEL on 2024-01-16 17:59:05. It has garnered views and [vid_likes] likes. The duration of the video is or seconds. You are alone in Minecraft #minecraft #minecraftshorts #gamer #youtubeshorts #short #gamer #alone #viral #trending video … Read More

  • Insane 40M Budget LastPlayer Titanium Watermelon Flower Drawage

    Insane 40M Budget LastPlayer Titanium Watermelon Flower DrawageVideo Information This video, titled ‘SonOyuncu Titanyum Karpuz Çiçek Bütçe 40M !ÇEKİLİŞ’, was uploaded by HzLowlers on 2024-02-21 04:55:49. It has garnered 4 views and 0 likes. The duration of the video is 00:03:00 or 180 seconds. rozzy pvp rozzy titanium rozzy titanium pvp rozzy duel rozzy open space rozzy titanium duel minecraft sonoyuncu skyblock, minecraft sonoyuncu cheat, minecraft sonoyuncu hack, minecraft sonoyuncu survival, minecraft sonoyuncu ip, minecraft sonoyuncu bedwars, minecraft sonoyuncu macro, minecraft sonoyuncu reach, minecraft sonoyuncu cheat how to do 2019, minecraft endgame settings, playing with a friend in minecraft endgame, minecraft endgame does not open, yasintnc texture… Read More

  • CrusherCallen’s Shocking Revelation: Am I Gaslighting Myself?

    CrusherCallen's Shocking Revelation: Am I Gaslighting Myself?Video Information and I think we’re in like a decent position here um I don’t expect much from this build but I think it’s a top 10 worthy so we can hope for the best like I mean that looks like a panda when you look at that you can tell that’s a panda right oh here we go my beauty look at that all right let’s have a look we got we’re getting some Goods uh legendaries I’m I’m seeing some right right ratings we’re in a good good spot after that I reckon I’m confident I’m saying my… Read More

  • Spread of Civilization – Roleplay, ValhallaMMO, Seasons, Realistic Economy, Real Farming, Dynamic Borders

    Spread of Civilization – Forge of the Old Gods A lonely forge sits atop an ivory tower on an island in the east. Legends claim that the old gods built it here, hoping to find serenity to complete their crafts among the waves. If your city captures it, you may just find that serenity in your crafts too. 🌼 Spring is here, the flowers are blooming, and the map has expanded. Join today to fight for the Forge of the Old Gods! Join Us on Spread of Civilization Today! IP: 104.128.55.16:25578 Discord: https://discord.gg/q7TBxjca3J Dynmap: http://104.128.55.16:8004/ Version: Java 1.20.4 Welcome to… Read More

  • Minecraft Memes – Mojang’s Mind Games

    Mojang thinking 436 is just a number, but in the Minecraft community, it’s the ultimate flex! Read More

  • Crafting a spicy Minecraft meme

    Crafting a spicy Minecraft meme “Why did the creeper go to therapy? Because it had too much TNTsion!” Read More

  • FLYING HIGH: Minecraft VR Elytra Adventure

    FLYING HIGH: Minecraft VR Elytra Adventure Exploring the World of Minecraft in VR with Elytra Embark on an exciting journey through the virtual world of Minecraft in VR with the exhilarating experience of using Elytra. Join the adventure as our protagonist sets out to conquer new heights and challenges in this immersive gameplay. Conquering the End and Beyond After a successful live stream featuring the defeat of the Ender Dragon, our intrepid player decides to embark on a new quest to acquire Elytra. The anticipation builds as they venture into uncharted territory, ready to soar through the skies in VR. Thrilling Elytra Flight Experience the… Read More

  • Join Minewind: The Ultimate Minecraft Server Experience!

    Join Minewind: The Ultimate Minecraft Server Experience! Welcome to Newsminecraft.com! Today, we stumbled upon a thrilling Minecraft video titled “Minecraft One Block Skyblock, con DWELLERS y MODS DE TERROR! (Ep.2)” by Kazutto. The video showcased a unique Modpack filled with terrifying mods like The Man From The Fog, The Midnight Lurker, The Mimic Dweller, and more. Kazutto’s adventure was filled with suspense, unexpected encounters, and heart-pounding moments that kept us on the edge of our seats. As we watched Kazutto navigate through the challenges of the game, we couldn’t help but think about the excitement and thrill that awaits players on Minewind Minecraft Server. With its… Read More

  • Uncover the Hilarious World of Minecraft

    Uncover the Hilarious World of Minecraft The Fascinating World of Minecraft Good morning everyone, I’m CrizPlay. Today we will immerse ourselves in the wonderful world of Minecraft. If you’re new to this game or just want to find out what makes it so special, you’ve come to the right place! A Brief History of Minecraft First, let’s go back a little in time, when Windows 7 and XP were still used. Minecraft was created by Markus Persson, also known as Notch. The game was released in 2011 and has since grown to become one of the most popular games in history. The World of Minecraft… Read More

  • Ultimate Nether Star Farming Tips for ATM9

    Ultimate Nether Star Farming Tips for ATM9Video Information hello guys welcome back to the channel welcome back to all the m 9 today is the big one guys yes because let me show you very quickly what we going to do today well we are going to try to make the chunk destroyer and why is that well because we are going to try to get some optium oh yes and yeah more upgrades coming soon guys so we need to look into that now as you can see can be very complicated to make these things we are going to have to make Quarry pluses… Read More

  • Surviving the Zombie Apocalypse with JJ and Mikey

    Surviving the Zombie Apocalypse with JJ and MikeyVideo Information nice another wonderful morning time to start today let’s step outside what hang on what’s going [Music] on huh everywhere I look there are freaky looking zombies Gathering what’s happening seriously this looks really bad I better grab some weapons what is this about those freaky zombies are everywhere whoa what’s their deal they’re just hanging out around my house I definitely need to grab some weapons I want to defend myself okay here we go down the [Music] hatch I need to hop across my secret lava security yes this is the place where I keep my… Read More

  • Ava’s Insane Trans Minecraft Hardcore Live!

    Ava's Insane Trans Minecraft Hardcore Live!Video Information e e that should fix that problem that’s interesting that’s quirky isn’t it can hear you now yay okay hello again creep Queen EV X ventry lilac Inky AR arbitraries Origins flame blade that’s a cool name ultrabot good to see you again Willow uh andham hello lilac can you send a ping in the Discord I’m too lazy to do it what’s happening with my eyes I have a very bad microphone or camera because it’s like basically my upside down phone because I have to plug it in so it’s a little iffy but son just… Read More

  • EPIC TREE HOUSE BUILD | Minecraft shizo gameplay

    EPIC TREE HOUSE BUILD | Minecraft shizo gameplayVideo Information This video, titled ‘I BUILT A TREE HOUSE | Minecraft Gameplay #2 | Kanishk Playz’, was uploaded by Kanishk Playz on 2024-04-17 09:30:13. It has garnered views and [vid_likes] likes. The duration of the video is or seconds. In this video, join me on a thrilling Minecraft adventure as I embark on a quest to create the ultimate Tree House in my Survival … Read More

  • Insane Minecraft Cobblemon Nuzlocke Challenge at Novathon!

    Insane Minecraft Cobblemon Nuzlocke Challenge at Novathon!Video Information Pokémon is popular and you know what else is popular Minecraft so what happens when you put the two together you get kobon cobon is a Minecraft server mod and add-on all put together in one in which you can play out your own Pokémon adventure in a blocky world which thanks to a sponsorship from the owners of the Kon server I did now I challenged myself to a little bit of a Nuzlocke challenge on the server with certain rules the first one is that as soon as I catch a Pokémon I have to name… Read More

  • “Heaven or Hell Disaster in Minecraft?!” #animation #gaming

    "Heaven or Hell Disaster in Minecraft?!" #animation #gamingVideo Information This video, titled ‘Hell or heaven minecraft #minecraft #animation’, was uploaded by Derp Animation on 2024-04-30 18:24:20. It has garnered 15530 views and 468 likes. The duration of the video is 00:00:35 or 35 seconds. Read More

  • Minecraft RIP Herobrine SMP 😢 @KaruneshOP

    Minecraft RIP Herobrine SMP 😢 @KaruneshOPVideo Information This video, titled ‘We All Miss Herobrine SMP 😔 @KaruneshOP #minecraft #subscribe #viral #smallyoutuber’, was uploaded by Gameszio RIP on 2024-01-14 05:09:21. It has garnered views and [vid_likes] likes. The duration of the video is or seconds. Read More

  • Unbelievable: Snow Golem Takedown in Minecraft ❄️ #shortsfeed

    Unbelievable: Snow Golem Takedown in Minecraft ❄️ #shortsfeedVideo Information This video, titled ‘Snow Golem ☃️ in Minecraft #shorts #shortsfeed #minecraft #shortsviral’, was uploaded by Down To Next on 2024-02-10 01:50:19. It has garnered 2511 views and likes. The duration of the video is 00:00:27 or 27 seconds. Read More

  • 🔥 EPIC SUGAKU BOSS CREATION 🔥 | Public Minecraft SMP

    🔥 EPIC SUGAKU BOSS CREATION 🔥 | Public Minecraft SMPVideo Information [Music] [Music] [Music] [Music] [Music] [Music] [Music] e [Music] [Music] uh a darn almost professional not quite how is it going celix first one in the Stream now receiving enough data do draft frames 44 I I got to remember not to Auto playay abroad in Japan videos but also that I have to shut off my server okay server is off we should be good intense music what intense music how’s it going gr hope you’re having a wonderful day I’m having a pretty good day I haven’t gotten a lot done but I mean that’s just… Read More

  • Infinity Isles SMP 1.20.4 Java Semi-Vanilla 18+ Whitelist Dynmap LGBTQ+ Friendly

    Welcome to Infinity Isles Your new Minecraft adventure awaits! Are you an explorer, a master builder, or a redstone genius? Look no further – our server caters to every player’s passion. Join our young community, bursting with excitement and growing by the day. Features: Java server hosted in the UK Whitelisted for players 18+ Mostly vanilla with quality-of-life enhancements Engaging features like Dynmap and frequent End resets Head Database for donators & supporters Step into our bustling Shopping District, where opportunities abound. Join our vibrant community and craft unforgettable memories. Apply today here. Read More

  • Devil’s Backbone | 1980s Roleplay Server

    Devil's Backbone | 1980s Roleplay Server🍂 | Vermont, 1986. The cicadas sing of change.Devil’s Backbone is a whitelisted Minecraft roleplaying experience. Set in 1980s America, the server follows the story of abnormal small town Blackwater Hills. With a mystery around every corner, Devil’s Backbone strives to embody a prime literate roleplay environment with an open setting for character exploration.Ready to board? Join our Discord server to learn more, and experience the server to its fullest when it launches on June 7, 2024.🔎 | FeaturesDevil’s Backbone offers a wide variety of immersive features to take your roleplay experience to the next level.Fully customizable profile for your… Read More

  • Minecraft Memes – CHANGE IT BACK! DON’T BE A COWARD!

    Minecraft Memes - CHANGE IT BACK! DON'T BE A COWARD!“I guess you could say this meme has a ‘crafty’ fanbase! They really don’t want any changes made!” Read More

  • Hot Minecraft Memes: Creepers vs. Mortal Kombat

    Hot Minecraft Memes: Creepers vs. Mortal Kombat “Why did the creeper go to Mortal Kombat? To learn some explosive new moves!” #minecrafthumor #gamerjokes #creepercombat Read More

  • Join Minewind: Where Crazy Builds Come to Life!

    Join Minewind: Where Crazy Builds Come to Life! Welcome, Minecraft enthusiasts! Are you ready to take your building skills to the next level? If you’re looking to enhance your structures and learn game-changing build hacks, then you need to join Minewind Minecraft Server. With a community of seasoned architects and beginners alike, Minewind offers a platform for creative minds to come together and inspire one another. Imagine exploring innovative building techniques, secret tricks, and creative strategies that will truly make your Minecraft world stand out. From hidden passages to jaw-dropping landscapes, Minewind is the place where your building skills will be taken to new heights. Join us… Read More

  • 110 Ways Minecraft Changed! Can You Tell?

    110 Ways Minecraft Changed! Can You Tell? Exploring Changes in the Minecraft World In the vast world of Minecraft, subtle changes can make a big difference. A fun game of spot the difference awaits players, challenging them to observe closely as elements shift and transform. Let’s dive into the exciting world of Minecraft and see what’s new! Spot the Difference Quiz One spot will fade away, while another will appear in its place. Can you spot the changes in the Minecraft world? This brain-teasing activity not only sharpens your observation skills but also provides a moment of revelation as you discover the altered elements. It’s a… Read More

  • Nico SMASHES Hunters in Minecraft Speedrun!

    Nico SMASHES Hunters in Minecraft Speedrun!Video Information it looks like we’re back at it again hello Nico and this time I’m going to beat you guys no you think so didn’t you lose last time yeah but that’s why I will win this time I doubt it and it starts now let’s go get him chase him down and it looks like I’m headed straight for that Village but oh gosh it’s on top of a mountain Nico is this just a normal speedrun you don’t have any op Stuff n what is that well you spoke to soda that in his hand I just… Read More