TechnoVision – Minecraft 1.16.4: Fabric Modding Tutorial – Basic Blocks (#3)

Video Information

Hey guys it’s thomas here with technovision and welcome back to our minecraft modding tutorial series for 1.16.4 now in this episode as you can see we are going to be making this beautiful but basic ruby block to go along with the ruby item that we made in the previous episode so

To get started what you want to do is come over to your registry package here again this holds the mod items class and we’re going to create a new class inside of here and you want to name this class modblocks and add that to repository and as you would expect this class is

Going to hold all of our blocks for our mod just like how our mod items class from the previous episode holds all of our items so inside of this modblox class to create a custom basic block what you want to do is of course create a public static final

Block and make sure you import block from net.minecraft.block and we’re just going to name this the name of our block so in my case i’m going to be creating a ruby block so ruby underscore block in all capitals again because this is a final so what this is going to equal is of

Course a new block and this is going to take in a parameter called fabric block settings and don’t worry if you get confused it’s a little overwhelming at first so we’re going to go through all the options but you want to pass in fabric block settings

And from this you can type dots of and if we just click one of these methods here inside of our of method we can throw in a material and if you want some additional settings so this is going to determine the like material type of your block

So what you want to do is type material dots and you can see that there’s a bunch of different materials here you can choose any one you like um and this is going to determine the material type so i think a ruby block is probably closest to like a metal block

And i believe that’s what the uh diamond block is as well so i’m going to select material.metal and uh just so i’m going to bring this down here just so it’s a little bit easier to see um because we this is going to be a very long line otherwise

But what you can do is after this.of method you can just keep adding settings to your blocks to make it more you know more advanced have more properties so for example i can type dots and you can see here we can add a hardness value

We can add material by color we can add certain like tools that you need to break it or luminance values all sorts of crazy stuff in here i’m not gonna go through all of them because as you can see there are a ton but i’m gonna go through a couple

Just so we can make a basic block so uh the first property i’m going to add is break by tool so if you type break by tool break by tool there we go uh this is going to allow you to specify a specific tool that is required to break your block

So for example um with a diamond block in minecraft you can’t really break it with a wooden axe for example but if you have a pickaxe that’s gonna work a lot better when you’re actually breaking that block so to specify a tool for this block to be able to break it faster

We can inside of our break by tool specify the tool by typing fabric tool tags dots and then we can choose a tool type so in my case i’m going to choose pick axes and then you can leave it there if you would like if you would like the game to allow all

Pickaxes to break your your block but you can add a comma and actually add a mining level if you would like so that uh the game excludes certain levels of that that specific tool so if you go in the description i actually have some more information on this it’s called a harvest level

And you can see here that the harvest levels range from zero all the way up to actually four this is a little outdated four should be netherright i believe but um if you were to put for example uh the number two in here so mining level of two

If we look at this wiki here we can see that a mining or harvest level sorry i keep saying a mining level i mean to say harvest level a harvest level of two is associated with iron so if we put two in here that means that

The game is going to require you to have at least an iron pickaxe or above in order to actually break and harvest this block so uh you can play around with that if you would like um i’m gonna set this to two just so we can

Test it out but i believe like the default like diamond block just has this set to nothing so you can just keep it as is or you could set it to zero which is wood in this case so that would allow any tool from wood and above

In the pickaxes section at least to mine your block so hope that makes sense you can set the mining level to whatever you would like i’m gonna set mine to 2 so that iron tools and above in the pickaxes section can break my block so another property we can add

And that’s important if we want to actually make sure this break by tool works is requires tool now by adding this property this essentially just like it states uh makes the block require a tool to be broken otherwise you’ll be able to actually break it with your hand and you can see here

That uh you can actually uh you can actually do some cool stuff with your hand i believe if you type break by hand yeah you can actually mess around with some stuff there so yeah definitely play around with that if you want to have your like block be broken by your hand

Although you could always just get rid of this requires tool property so the next property i’m going to add is our strength so you can do dot strength and this will pass in two values a hardness and a resistance so um in the description here i have

Another wiki for hardness values now the hardness value is um what is going to make your block harder or easier to actually mine it’s like how quickly it takes uh or how much time it takes rather to break your block so in this like little wiki here you can see some

Harness values for the vanilla games you can sort of compare so for example a let’s find the diamond block here so the diamond block is it has a hardness value of five so i’m gonna make mine pretty much similar the diamond block so i’m going to give my my block

A hardness value of 5 and this is a float so you want to put 5f or you can also put 5.0 f as well so that’s the hardness value and then the next value is going to be the resistance also known as the blast resistance so again i have another wiki here

In the description called resistance and this shows you the resistances in the vanilla game and this is going to this is going to determine um essentially how easy it is for your block to be destroyed by tnt by creeper explosions anything that like explodes pretty much so as you can see here

Like bedrock has a super massive value because it’s never going to be destroyed by by explosions but then you know something like leaves has a value of 1 because it can really easily be destroyed by tnt so i’m going to find a diamond block here and a diamond block

Has a blast resistance value of 30 so i’m just going to copy that and put 30 here and it is a float so you do need that f 30.0 f okay and also i should mention this is this dot strength like parameter or this method here

Allows you to set a hardness and a resistance but if you just want one of them you can just use uh for example dot hardness uh and you can just throw in the hardness value or you can do dot resistance um so yeah you can do that as well uh

You can just use dot strength just to sort of clean it up so that there’s only one method for both but again totally up to you and another interesting property you can set is dot sounds and this will allow you to set the sound of your actual block when you like walk

Over it so this material type is the sound when you break the block but the sounds down here the sounds method is what uh what plays when you walk on the block so very important to like keep those straights and i’m gonna have this be again the same as the material

So for our sounds i’m gonna pass in block sound group and you can see here that there are a ton of different sounds you can choose from like literally a bunch i’m going to choose dot metal and that way when we break our block and when we walk on it

Both times it will play the sound for a metal block of course like i mentioned there are still tons of other properties you can set one of my favorites to set is dot luminance and you can actually throw in an integer value in here to make your block

Glow in the dark so stuff like that are really cool properties that you can play around with but i’m just gonna leave it to these so that it is simple uh because this is a basic block we’ll be dealing with more advanced blocks in another episode so don’t worry about that

But if you don’t want to have all these like you know sort of properties taking up space you can of course put this all back up onto one line like this and really quickly i just want to show you and there we go there we go

There we go so uh when you make a ton of blocks normally you’ll have them all in one line just so it saves space but um just for this tutorial i’m going to keep them out uh just so that you can see them uh yeah

There we go just so that you can see them and so that you can copy them down if you need to so once you have your block created you have all the properties set that you want you want to create a method here to register them

So just like we did in mod items here with our register items method here we’re going to do the same thing so you want to create in mod blocks a public static void method and we’re going to name this register blocks and instead of here uh just like we did

In mod items we’re going to register our blocks so to register our ruby block what we want to do is get our registry so registry and then dot register and inside of this register method first we’re going to pass in the registry in our case is going to be block so

Registry dot block and that’s going to make sure that we get the defaulted registry of block so that we register this to the right area and then once we have that set add a comma we need an identifier so we’re going to create a new identifier

And we can pass in here first our mod id so you want to grab your main class in my case tutorial dots and then you can grab your mod id so main class.mod id and then of course we also need a path so you want your path again to be exactly the same

Name as you have for your your block here except in all lowercase so in my case ruby underscore block there we go and after the identifier uh we can just throw in our block so again you can just copy your block here your block name

And paste it in and add a semicolon of course and there we go so we have now registered the block to the game we just need to make sure that this gets called at the start of initialization so you want to come to your main class in my case tutorial

And in on initialize just like we did with our mod items here right below that we want to grab our mod blocks class and we want to register blocks and that is going to make sure that on initialize uh right after our items are initialized we

Are going to grab mod blocks and uh it’s going to make sure that it runs everything inside of this method here so once that’s all good we can actually move on to block items so what you want to do is come over to your mod items class

Because we need to actually create a block item for our ruby block because in vanilla minecraft blocks and items are two separate things but every block has a subsequent item that is attached to it that way when you place a block it goes from item form to block form

In the game it’s a little confusing to wrap your head around but essentially all you need to know is that for every block that you create in the game in mod blocks you have to create a mod item that is attached to it so instead of mod items here i’m going to create

A little note here just so we can organize it i’m going to put items up here and then i’m going to put all of our block items down here whoops there we go just a little note just to organize things not necessary but instead of mod items you want to create a public

Static final and instead of oh did not spell final right instead of item you want to create a block item so this is going to be block item and make sure you import that and you want to name this exactly the same name as your block here so in my case ruby block

So ruby underscore block and this is going to equal a new block item block item and this is going to pass in two things first thing uh your block that you just created in mod blocks so to pass that in you can just grab mod blocks

Dots and then you can grab your block so this is going to be the block that this item is attached to in the game so ruby block and then of course just like we put here we need to add some item settings so we can do that with new item dot settings

And then of course you can set whatever settings you want uh for this item i’m just gonna do dot group because all i need for this item is to set the creative tab group so doc group and then i can set the creative tab group to

Item group dots and we can just put it let’s put it in building blocks there we go that’s fine and then of course add a semicolon and there we go so i know that it’s a little bit off screen here i’ll try to move this over just a little bit

But uh yeah super long line i know but there you go that’s pretty much it for a block item and of course we have to also register this just like we did with our old item so come down here and again just like before registry dot register and we’re gonna grab our registry.item

Because it is still an item uh we need an identifier for it so new identifier uh throw in our mod id so tutorial.mod id and then of course our path and this is going to be again exactly the same name as this just all lowercase so ruby underscore block and then of

Course as always our last parameter here is going to be pretty much just our block item we can just throw it in there so ruby underscore block and again that’s going to make sure that we actually register this specific block item so there we go our item and our block

Are now inside of the game they’re registered to the game but we have no model and no texture and actually no name for them either in the game so we need to do that right now so to do that what you want to do is come over to resources here go to assets

Open that up and we need to create a new uh file in here or a new folder rather so inside of your mod id folder here mine is tutorial you want to right click create a new directory and we’re going to call this block states

And we’re going to come back to this but this is going to hold our block states for all of the blocks we create in the game inside of our models package here we have an item package we want to create a new package inside of models to go alongside that

So new directory and we want to name this block should be singular no no plural just block so instead of models we should have a block folder and an item folder now and then instead of textures again we have an items folder here we want to add a blocks folder

So inside of textures new directory and you want to name this just like with our items blocks and it should be plural this time with an s so there we go so instead of models we should have block item and then for items or textures rather we should have blocks and items

And then again our block states folder outside of all of that okay so now that we have all of those new folders i know it’s a lot uh first thing you want to do go over to your lang package here go to ian underscore us.json and we can actually set a name

For our object so just like we did with our item we want to set a name in the game so we can add a comma here and add a new entry this is going to be a block dot because it is a block not an item and then our mod id

So my case tutorial dot and then the name of your object again that name is right here ruby underscore block so we can paste it in so yeah the only thing that’s really different here besides you know the name obviously is that this is a block instead of an item

And then of course a colon and we can set the name to whatever we want i’m going to call this ruby block so yeah there we go now we have a name set for our block we can close out of this uh the next thing we need

Is a model now this is going to be a kind of annoying process because you have to do every single time you create a new a new block of course you can always create a generator yourself if you wanted but first we need a model for our block so

What you can do is go in the description and i’ve actually preset pre-made all of these for you you can just change your mod id and your your block name so go in the description and the first paste bin in the description should take you to this models block paste bin and

Uh what you want to do is come over to models block folder here right click create a new file and you want to name this the name of your block so in my case right here you can see our path is ruby underscore block so ruby underscore block dot json

Add a repository and just like we did with our item in the previous episode we need to actually set a model for this so come over to this first paste bin and you can just copy all of it and you can just paste it right in and

I’ll go through all this in a second but what you want to do of course is change your mod id to your mod id mine is tutorial and you want to change your block name to again exactly what you set here for your path ruby underscore block

And there we go so what this is going to do essentially this is the model now we don’t have any crazy model for this block right now this is a basic standard four-sided block so what we’re saying here is that this is a regular block it’s just a cube and there’s one texture

For all of it for the entire block and that texture is located in uh your mod id folder textures blocks slash and then ruby block we’re going to throw our texture in there in a second so yeah so now that we have all that we also need a

Uh a model for the item because the item is separate from the the actual block as i mentioned earlier so go to the item uh package here right click create a new file and you’re gonna name this again just like you did before ruby underscore block

All these jsons for right now are gonna be named ruby block dot json add a repository and if you go to the second link in the description that will take you to the models item uh paste bin here you can copy all this and paste it in

And again change your mod id mine is tutorial and you can change the block name to the block name again mine is ruby underscore block and now what this is doing is it’s just saying that the item model is going to be inherited from a parent

And that parent is it’s directing you to the parent which happens to be the adjacent we just created so pretty self-explanatory and then it’s going to grab the texture from here so yeah you can follow it you know yourself if you’re a little bit confused just follow these directories and you

Should be fine and then the last json we need to make is in block states so right click in the block states folder create a new file and you want to name this again same thing as always ruby underscore block dot json because that is the block we are making this for

And uh finally go in the description go to the last paste bin this will be the block states paste bin you can copy all this information paste it in and just to sort of explain this well i guess we should set our mod id first so again change mod

Id to your mod id change block name to the name of your block mine is ruby underscore block and all this is essentially doing is setting a block state for your block a block state is um sort of like a i know this is gonna sound like a lame

Answer but it’s like a state that your block is in so i’ll explain it later when we go into block states in an actual video but um really all you need to know right now is that our block is static there’s nothing interesting happening to it uh so

We’re pretty much setting no interesting block state so that’s why we have nothing set here uh there’s pretty much no variance so yeah and essentially just setting the model uh for our block at all times uh to this to what we just created in models block so hopefully that makes sense and again

If it doesn’t you can just follow these directories back and it should you should be able to see the relationship between them and it should be pretty easy and simple once you realize their relationship to each other now the last thing that we need to do is actually get our texture

And i will actually leave a tutorial just like last time in the description on how to texture your own block you can do this in photoshop or or microsoft paint whatever you want all that matters is that your texture is a png file it has to be named exactly

What we put here so uh yeah same thing that we put for our path in my case ruby underscore block and it is case sensitive so that’s very important and of course uh you want to make sure that you’re making this in 16 by 16 pixel dimensions

And uh yeah again you can mess around with this later on but for right now i would just stick to 16 by 16 pixels so once you have this you want to open up that uh folder and texture so textures blocks and you’re going to drag it in there so

Let’s just drag it in there really quickly drag it into blocks refactor add a repository you can see the texture right there and now instead of textures blocks we have our ruby underscore block.png and yeah so now we are pretty much done we’ve created our block

And let’s go check it out in the game to run the game again you come up to the screen triangle here i guess we could file save all first click this green triangle and the game will run and i will see you guys inside of the game

All right so we’re inside of the game and if we go to our creative menu here and we go to search items and we scroll all the way down we can see that we do oh i accidentally clicked out of it there we go we can see that our ruby block is here

We can see the creative tab is set to building blocks just like we set and if we grab this block here and replace it down there we go it is on the ground looking perfect looking beautiful and uh you probably can’t hear the sound on this video because i turned it down

Super low but uh this sound the walking sound is correct just like we set and now let’s test out the uh the tool type so let’s grab a i believe we set it to an iron pickaxe or above so let’s grab like an iron a diamond pickaxe and then like a stone pickaxe

And we can grab like an axe just to make sure that it is set to pickaxe so let’s go to gamemode 0 or gamemode survival rather now if we try to break this block with an axe you can see that we’re not really able to break it very fast

Because we did set the tool type to pickaxe but if we use a pickaxe here we can see that we can break it just fine now the block is not going to like drop anything and that’s because we haven’t set a loot table for it yet that is a much more advanced concept

That i will go into in a future video but for now the block will not drop anything so i apologize for that but we will be covering that very soon now to make sure as you can see uh we did set anything from iron and above can

Break it so iron can break it and you can see diamond can break it as well but if we use anything below iron in this case stone it will uh pretty much be useless and it won’t be able to harvest the block so yeah that’ll be much more

Important when we get into loot tables the last thing i want to mention is that if you don’t want to use the creative menu you can always use the command slash give at p for player and then your mod id so tutorial colon and then the name of your block so

Ruby underscore block and there you go you should get it right in your inventory all right so that is it for this episode thanks guys so much for watching if you want to create a new block in the future of course now you know all you have to

Do is add an entry into mod blocks add an entry into mod items for a block item register both of those entries and then create those three unique jsons that i mentioned earlier that specify the model as well as adding your texture to the the specified folder and you have

Your custom block in the game so thanks guys so much for watching make sure to check out our discord if you need any help or support and i will see you in the next episode You

This video, titled ‘Minecraft 1.16.4: Fabric Modding Tutorial – Basic Blocks (#3)’, was uploaded by TechnoVision on 2020-12-25 04:10:30. It has garnered 23678 views and 846 likes. The duration of the video is 00:23:55 or 1435 seconds.

This tutorial series will cover building a Minecraft Mod from scratch using the Fabric API! In this episode, we create a custom block with some unique values.

— Important Links —

● Model-Block JSON: https://pastebin.com/CrfnVSku ● Model-Item JSON: https://pastebin.com/40yUG3J4 ● Blockstates JSON: https://pastebin.com/jLnVTfgs

● Hardness Values: https://minecraftmodcustomstuff.fandom.com/wiki/Hardness ● Resistance Values: https://minecraftmodcustomstuff.fandom.com/wiki/Resistance ● Harvest Levels: https://minecraftmodcustomstuff.fandom.com/wiki/HarvestLevel ● Texture Guide: https://www.youtube.com/watch?v=Sg_znEXBD7k ● Fabric Wiki: https://fabricmc.net/wiki/tutorial:blocks

● Discord: https://discord.gg/m5fjByfrKP ● GitHub Repository: https://github.com/TechnoVisionDev/Fabric-Modding-Tutorial-1.16.4

— Music —

● Chill Out Records – Minute Mix

— My Channel —

● Subscribe: http://tinyurl.com/zbc7mwy ● Instagram: https://www.instagram.com/tomm.peters ● Twitter: https://twitter.com/TechnoVisionTV

#minecraft #modding #tutorial

  • Sneaking into ‘Mr. Thief’s’ Village in Minecraft #3

    Sneaking into 'Mr. Thief's' Village in Minecraft #3 Minecraft Adventures with “MR TRỘM CẮP” Exploring the Village In this exciting Minecraft episode, our protagonist, "MR TRỘM CẮP," embarks on a journey to explore a vibrant village. As they navigate through the winding streets and bustling marketplaces, they encounter a myriad of interesting characters and unique structures. From quaint cottages to towering cathedrals, the village is a treasure trove of architectural wonders waiting to be discovered. Building and Crafting One of the core elements of Minecraft is the ability to build and craft. "MR TRỘM CẮP" showcases their creativity as they construct elaborate structures and craft powerful tools… Read More

  • Sly Minecraft Texture Pack Share

    Sly Minecraft Texture Pack Share Minecraft Texture Pack Share: Cute Fox Villagers, Polar Bears, and More! Are you a Minecraft enthusiast looking to spice up your gameplay with some adorable additions? Look no further! In this article, we’ll explore a fun and exciting texture pack shared by a talented Minecraft player. We Don’t Bite Texture Pack One of the highlights of this share is the “We Don’t Bite” texture pack. This pack brings a whole new level of cuteness to your Minecraft world with features like cute fox villagers and lovable polar bears. The attention to detail in this pack is truly impressive, making… Read More

  • MASSIVE Multiplayer Server Wipeout in Minecraft 1.21.10?!

    MASSIVE Multiplayer Server Wipeout in Minecraft 1.21.10?! Majority of Multiplayer Servers Disappearing in Minecraft 1.21.10 Update? The Evolution of Multiplayer Servers In 2018, the official server software BDS Alpha version for the Bedrock Edition was introduced, allowing players to engage in multiplayer gameplay using the latest vanilla version. Prior to this, unofficial software like “PocketMine-MP” was the only option available. However, BDS offers advantages such as plugin support, making it a popular choice even today. Key Point: The ability to run plugins on BDS sets it apart from unofficial software. The Importance of Debug Symbols Creating servers for Minecraft requires developers to replicate the game’s network,… Read More

  • Brewing Every Potion in Minecraft 1.21

    Brewing Every Potion in Minecraft 1.21 Minecraft Brewing Guide 1.21: Mastering Potions and More! Potions in Minecraft are often overlooked, but they can be incredibly powerful tools in your gameplay. Brewing potions may seem daunting at first, but fear not! This ultimate Minecraft 1.21 brewing guide will walk you through the process step by step, ensuring you can craft every potion with ease. Getting Started: Brewing Essentials To begin your potion-making journey, you’ll need a brewing stand. Craft one using one Blaze Rod and three Cobblestone. Don’t forget to fuel your brewing stand with Blaze Powder! Next, gather glass blocks to create bottles for your… Read More

  • Crafting Cuts: Minecraft Makeover Madness

    Crafting Cuts: Minecraft Makeover Madness In the world of Minecraft, a haircut’s the talk, Before and after, the difference is stark. From looking messy to looking so clean, The reactions are wild, a hilarious scene. No diamonds in sight, just a mining quest, But keep on searching, you’ll find the best. A sister’s late for school, a brother’s in a rush, The chaos ensues, oh what a hush. Dad’s off to play cards, mom’s coming home, The homework’s not done, oh what a tone. But in the game, there’s always a surprise, A secret passage, right before your eyes. With 3D drops and diamond… Read More

  • Green Shell Shenanigans: Kars’ Chaos

    Green Shell Shenanigans: Kars' Chaos A Green Shell Shock | Kars’ Chaos 2 Introduction Joining Kars’ Minecraft server has been an exciting adventure for many players. The vibrant community and engaging gameplay make it a must-visit for Minecraft enthusiasts. Let’s dive into the world of Kars’ Chaos 2 and explore the wonders that await! Exploring Kars’ Chaos 2 From the moment players step into Kars’ Chaos 2, they are greeted with a world full of possibilities. The server offers a wide range of activities, from building magnificent structures to embarking on thrilling adventures. With a dedicated community and exciting events, there is never a… Read More

  • Ultimate FNAF Statue Build Challenge

    Ultimate FNAF Statue Build Challenge Exploring the NOOB vs PRO vs HACKER FIVE NIGHTS AT FREDDY’S STATUE BUILD CHALLENGE in Minecraft The Minecraft community is always buzzing with exciting challenges and creative builds. One such popular challenge is the NOOB vs PRO vs HACKER FIVE NIGHTS AT FREDDY’S STATUE BUILD CHALLENGE. In this challenge, players of different skill levels compete to create stunning statues inspired by the iconic characters from the Five Nights at Freddy’s series. Building in Minecraft Building in Minecraft is a fundamental aspect of the game that allows players to unleash their creativity. From simple houses to intricate statues, the possibilities… Read More

  • Minecraft Mayhem: Too Loud to Handle

    Minecraft Mayhem: Too Loud to Handle In Minecraft, the updates are on the rise, Trial chambers coming, a big surprise. Behind the scenes, Mojang gives a peek, Creating a buzz, for all the geeks. I built a house with my Twitch chat crew, Not your average tutorial, but it’ll do. Loud sounds they mentioned, a funny jest, Maybe it was rain, for a peaceful rest. Join me on Twitch, for more fun and play, In the world of Minecraft, we’ll make our way. Funny moments and highlights to see, Gaming with friends, just you and me. Read More

  • Join Minewind Server for a Better Minecraft Experience!

    Join Minewind Server for a Better Minecraft Experience! Welcome Minecraft enthusiasts! Are you looking to take your Minecraft content creation to the next level? Do you want to grow your channel and increase your views and engagement? Look no further! Join the Minewind Minecraft Server today and immerse yourself in a vibrant community of like-minded players. Just like in the YouTube video “1 Mistake Every Minecraft Youtubers Make (FIX THEM TO GROW FAST!!)”, where creators learn about common mistakes and how to fix them, Minewind offers a unique and exciting gameplay experience that will keep you coming back for more. With a focus on player interaction, PvP… Read More

  • Deeper Dive: DualityCalamity MCC Ep. 3

    Deeper Dive: DualityCalamity MCC Ep. 3 MCC: Episode 3! (We Need To Go Deeper) Welcome to the Modded Minecraft Series, MCC! In this exciting episode, our adventurers delve into the depths of the New Nether, uncovering valuable resources and facing thrilling challenges. Let’s dive into the action-packed world of Minecraft! Exploring the New Nether As our intrepid players venture into the New Nether, they are greeted by a landscape teeming with danger and opportunity. The revamped Nether biome offers a host of new features, from unique mobs to rare ores waiting to be discovered. Key Points: Encounter new mobs such as Piglins and Hoglins, each… Read More

  • Unleashing The Terrifying Minecraft Curse! 🔥👹 #11

    Unleashing The Terrifying Minecraft Curse! 🔥👹 #11Video Information yo pohon tanpa daun lagi guys di sini guys kita cek keadaan sekitar yuk Guys kita mukan pohon tanpa daun lagi nih Mantap nih Kita coba hancurin kali ya kalau misal kita hancurin apa yang bakal terjadi sama kita ya Wah mantap Guys kita Menan pohon tanpa daun lagi let’s go [Musik] nah J Kita akan ambil daging-daging What the hell guys What the hell what what the hell guys Yo what Wah ini guys ini sih ini ini ini gila gila wah di sini kita menemukan This video, titled ‘Ini Adalah Minecraft Versi Kutukan #11 #minecraft #mod… Read More

  • URGENT! Clear space on drive NOW!! 🚨 #minecraft

    URGENT! Clear space on drive NOW!! 🚨 #minecraftVideo Information I realized that we were getting a cape uh oh yeah you should am I oh I think my game crashed This video, titled ‘This is your reminder to free up space on your hard drive… #minecraft #gaming’, was uploaded by ztVypr on 2024-05-28 16:00:08. It has garnered 634 views and 10 likes. The duration of the video is 00:00:08 or 8 seconds. I may or may not have run out of storage space while playing minecraft… Read More

  • Parsa Shaaker reveals SECRET to playing Subwoofer Lullaby on piano! 🎹🎮 #MinecraftMadness

    Parsa Shaaker reveals SECRET to playing Subwoofer Lullaby on piano! 🎹🎮 #MinecraftMadnessVideo Information how to play subwoofer lullabi from Minecraft on piano easy [Music] Edition now add the left hand [Music] This video, titled ‘minecraft – Subwoofer lullaby easy tutorial #piano#nostalgia#minecraft#c418’, was uploaded by Parsa shaaker on 2024-06-22 18:32:03. It has garnered 515 views and 17 likes. The duration of the video is 00:00:31 or 31 seconds. This is my piano tutorial for Subwoofer lullaby from Minecraft soundtrack that is made by c418 . . minecraft nostalgia – Subwoofer lullaby tutorial Recorded by parsa shaaker . . 🎹Don’t forget to Subscribe, like and comments! And please click on the bell 🔔… Read More

  • Shadow SMP

    Shadow SMPShadow SMP is an exciting online multiplayer experience with a focus on building and survival. The server offers various plugins, tools, and resources to ensure an enjoyable and challenging gameplay environment. Shadow SMP encourages collaboration and community, giving players opportunities to interact and collaborate with others or engage in solo adventures. Explore the vast world, build unique structures, and create lasting memories on Shadow SMP! 37.230.138.175:25595 Read More

  • MoistCraft – SMP Modded Whitelist

    Welcome to MoistCraft! MoistCraft is a technical Minecraft server founded in October 2021. Our focus is on large scale projects and helping players improve their skills. If you’re interested in joining us, please visit our Discord server: https://discord.gg/KPTCc8ZMVY We are currently seeking grinders and decorators. Check out our progress updates channel for past projects and achievements. Carpet Rules: flippinCactus antiCheatsDisabled xpNoCooldown and more… Mods Used: Carpet, Lithium, Carpet Extra, Starlight, and more. Read More

  • Minecraft Memes – Real ones know… he’s always lurking.

    Real ones know… Steve’s been stuck in that minecart for years, waiting for someone to press the button to let him out. And apparently, 439 people find that hilarious. Read More

  • Minecraft meme MLG 🔥😂

    Minecraft meme MLG 🔥😂 When you accidentally mine straight down in Minecraft and fall into a pit of lava, but you survive because you’re wearing your MLG pro gamer glasses. 😎 Read More

  • Phyrewing: Silent Survival Build | Ep. 2

    Phyrewing: Silent Survival Build | Ep. 2 Minecraft Let’s Play: Building, Exploring, and Villager Trading Adventure! Building a Temporary Villager Breeding and Trading Space In this episode of the Let’s Play series, Phyre embarks on a mission to convert an area into a temporary villager breeding and trading space. Fencing off the area to ensure the safety of the villagers, Phyre plans to populate the space with librarians and smiths for trading iron and acquiring enchant books. Exploring New Villages and Acquiring Resources Venturing into different villages, Phyre encounters various challenges and opportunities. From convincing villagers to relocate to a new village to exploring desert villages… Read More

  • Diamonds & Enchanting Table | Hardcore Survival

    Diamonds & Enchanting Table | Hardcore Survival Exploring Diamonds and Enchanting in Minecraft Hardcore Season 2 Episode 5 Finding Diamonds and Crafting an Enchanting Table In this episode of Minecraft Hardcore Season 2, annihlillyate embarks on a quest to mine his very first diamonds. After a successful live stream mining session, he uncovers the precious gems and sets his sights on crafting a diamond pickaxe and an enchanting table. Discovering Diamonds Venturing into the depths of his mineshaft, annihlillyate stumbles upon a vein of diamonds. With careful precision, he mines the diamonds, earning the coveted advancement and securing enough gems to craft an enchanting table. Crafting… Read More

  • Stranded ONE RAFT with JOHNNY in Minecraft!!!

    Stranded ONE RAFT with JOHNNY in Minecraft!!!Video Information no guys what are you doing get out of the water there’s so many sharks around guys Johnny just got eaten by a shark it’s just be left quickly I got to use my fishing rod and get these logs over here yes I just got a stack of them guys oh no why did Johnny have to jump in guys he said he’ll save us all but he didn’t even have to jump oh he’s an interesting fell okay let me grab all of this iron wao look how much I just gotten W there’s so many… Read More

  • Secretly Cheating in Mob Battle Competition!

    Secretly Cheating in Mob Battle Competition!Video Information today we’re doing a Minecraft M battle but we’re in the SCP Dimension however my friend Dino has no idea that I’m secretly cheating with one weight glass so I’ll be able to see everything that Dino spawns and then spawn the perfect counters to them so let’s meet Dino on the platform and pretend we’re going to do a real M battle hey Dino hey there flaky are you ready to do the most awesomest as mod battle ever I am but I’m definitely going to win today oh yeah you think so hey who do you… Read More

  • Redwolf DAY 3: Solo Karne will LEVEL UP in Minecraft! 😱

    Redwolf DAY 3: Solo Karne will LEVEL UP in Minecraft! 😱Video Information [संगीत] ज मस हैकन ग रा फम आ स् आ फकस फ वेलकम गाइस वेलकम वेलकम वेलकम टू अनदर माइ कफ्ट एसएमपी स्ट्रीम वी आर बैक अगेन एसएमपी दो जन है ऑलरेडी सर्वर में हा भाई मेरे को लगा सोलो ही है चलो सर्वर के अंदर जाते हैं देखते हैं क्या है कल का तो भाही यह हो गया था अरे लाला ग्रुप में आजा लाला तो पहले तो यह होने दे हेलो लाला हेलो हा चल रही है हा तो फिर मुक भी क्या हा आ रहा है वो कहां पर तुम लोग ब अरे कहां पर… Read More

  • Insane Engineering Students Troll Minecraft PVPers!

    Insane Engineering Students Troll Minecraft PVPers!Video Information no oh here’s pickaxe all right someone’s coming I got a sharp two Stone store let’s go sweet that’s a lot of damage 6.5 I want you to stand right here right right here I’m going to try and make a little Crusher auto click I don’t know if that’s a lot or not we can just see who’s all alive we have good fresh sub mustach here is that foot right there someone’s coming when he starts attacking you if he gets real close let me know okay he ran he ran he left I this is… Read More

  • Insane PVP Gameplay with Babydoll in Minecraft

    Insane PVP Gameplay with Babydoll in MinecraftVideo Information This video, titled ‘babydoll 🥰 #minecraft #pvp #pojavalauncher #youtube #shorts #viral #trending #pojav’, was uploaded by Itz Istormy playz on 2024-01-15 12:53:04. It has garnered 278 views and likes. The duration of the video is 00:00:48 or 48 seconds. pojav launcher it’s istormy it’s stormy minecraft minecraft pvp lifesteal viral pvp montage video trending lapata smp pojavlauncher pojav launcher pvp tips best controls for pojavlauncher pojav launcher control pojav launcher lag fix pojav launcher pvp control pojav launcher gameplay pvp texture pack minecraft video shorts minecraft texture pack pvp in pojav launcher minecraft pvp texture pack fps boost… Read More

  • WARNING: 7 NIGHTMARE Mistakes in Johnny Minecraft!

    WARNING: 7 NIGHTMARE Mistakes in Johnny Minecraft!Video Information guys today was the worst day at school ever we got our grades back for the year don’t just like not show them Marty oh gosh these are really bad guys everything is f Min is two me these are actually better than what I easy get what how are they better Gooby this is the worst grades you could possibly get easy to say that um I just get zero you usually get zeros yeah scoby yeah wow that’s pretty bad an F is a zero well then I’m just very consistent well guys hopefully the school… Read More

  • INSANE Minecraft Speedrun in the Rain!

    INSANE Minecraft Speedrun in the Rain!Video Information yeah I guess all right I’m going title my [ __ ] speed running the new Minecraft update bet Yow see if my shit’s live and we’re live all right bet [ __ ] says excellent connection not the first hell yeah hell yeah sh says excellent connection not the first yo chat yo chat what’s good bacon what’s good what’s good I’ll make the world all [Music] bet I’m going to drop a video today um after this too like immediately after you get off I’m going to start working on a cubecraft uh video that’s just… Read More

  • UNBELIEVABLE! The Ultimate Sword in Vault Hunters 1.18

    UNBELIEVABLE! The Ultimate Sword in Vault Hunters 1.18Video Information I’m very interested by this sword because it has a legendary plus 63.5 attack damage let’s just take a look at this now I can’t wait until next episode actually since this is empty what could I craft for Lucky hit 5 to 6% chance come on 6% okay let’s try that again second time the chance sorry I meant third times the charm fourth times the charm okay I’m giving this one more shot okay I guess we’re having 5% lucky hit because I’ve already put way too much gold into this ooh I think that is… Read More

  • ULTIMATE Minecraft Pulse Counter: NO items, instant reset!

    ULTIMATE Minecraft Pulse Counter: NO items, instant reset!Video Information hey guys Michael 23b here and welcome back to another Redstone video and it’s a bit of a simpler video today but what I want to show you today are these customizable end pulse counters so what that means is that each one of these circuits will only give an output after a certain amount of pulses so before we start out I just want to point out that there are many different designs that you could do for a pulse counter many of them use hoppers and droppers and just items flowing through those uh but the… Read More

  • Sneeds Mine n Craft

    Sneeds Mine n CraftSneed’s Mine n Craft is an anarchy server running on Minecraft version 1.20.2, with player commands such as /tpa, /sethome, and /spawn! There are no rules, other than to not intentionally harm the functionality of the server. 89.117.72.89:27105 Read More

  • The Lands of Valoria – semi-vanilla

    JOIN THE LANDS OF VALORIA TODAY! Based on Protagnst’s “Players Simulate Medieval Minecraft”, Valoria is a bedrock realm filled with opportunities and fun! We have a well-organized discord server and unique ideas for you to experience. Join now as the server is launching within days! Valoria is based on medieval Minecraft with a medieval armor mod and a beautiful spawn. It heavily relies on player lore and stories, with its own hidden secrets to uncover! Join us and unravel the mystery to reunite The Lands of Valoria! Contact “bigg_money7” or “Deadgear788” on DC to join! Join our Discord server now! Read More

  • FlickerMc

    FlickerMcFlickerMc is a growing community, that includes Economy/cash, Teams for you and your friends to join/create and mostly amazing people! Join now for free crate keys!!! Looking for staff, apply on the discord! Read More

  • Minecraft Memes – Navigational Irony: Oceanic Odyssey 😄

    Why do Minecraft characters always carry a compass when they can’t even navigate an ocean without getting lost? It’s like they’re setting themselves up for failure! 😄 Read More

  • Hot Minecraft Showdown: Noob vs Pro vs Hacker vs God

    Hot Minecraft Showdown: Noob vs Pro vs Hacker vs God “When you accidentally build a dirt house in Minecraft and your friends start calling you a ‘noob’ but little do they know it’s actually a high-tech underground bunker in disguise.” #minecraftnoobvsprovshackervsgod #minecraftmemes Read More

  • Unlock Hidden Worlds with These Top 10 MCPE Seeds – Must See!

    Unlock Hidden Worlds with These Top 10 MCPE Seeds - Must See!Video Information starting your Minecraft pocket edition adventure with the right seeds is crucial to unlocking amazing worlds and experiences these seeds hold the key to uncovering Hidden Treasures stunning Landscapes and challenging terrains that will test your survival skills embark on your Minecraft journey and witness the wonders of these top 10 seeds that promise to redefine your gaming experience from mystical Islands to haunted forests each seed will transport you to a different realm filled with Mysteries waiting to be unraveled prepare to be amazed as you dive into these extraordinary worlds and embark on thrilling Adventures that… Read More

  • Summer Weather Chaos in Minecraft Hive!

    Summer Weather Chaos in Minecraft Hive!Video Information there you go up and it closed my music thing right as I hit live that’s lovely gotta get the music going hello hope you’re all doing well uh Minecraft is still won’t let me use my uh actual skin that like a for the games that’s nice there you go oh and I forgot to mute Discord welcome to the stream everyone Hi ke du Reaper Jackie uh Kurt uh I I don’t know if Logan has a stream open but he is following [Music] me how’s everyone’s uh day so far are you do oh noise… Read More

  • HACKERS DESTROYED MY BASE! – KelpTalks on Donut SMP

    HACKERS DESTROYED MY BASE! - KelpTalks on Donut SMPVideo Information uh hello BR I just went on a whole like monologue for like five minutes and like none of that was recorded anyways uh yeah I expanded the pumpkin farm we got a little bit bigger now you know I doubled the length and or I over double the length and I’m working on some more layers did a little bit of off camera work I got uh I’m I’m setting up some you know thing to make this look nice look look at this big arch I think it looks good yo what’s up WQ what’s up… Read More

  • New gaming hack! Combining items in Minecraft!

    New gaming hack! Combining items in Minecraft!Video Information [Music] hey there my name is Inc today I’m back in Minecraft but I can combine items our goal today is to beat the Ender Dragon and if you enjoy I’d really appreciate if you subscribed let’s get into it okay this is a cool Spawn oh hello there all right now to start with this pack what we need to get is a smithing table so we’re going to have to go mining and get some iron but before we go down I’m going to grab some food all right let’s grab some Stone and start smelting… Read More

  • INSANE 3D Murder Mystery on The Hive! 🕵️‍♂️| Minecraft

    INSANE 3D Murder Mystery on The Hive! 🕵️‍♂️| MinecraftVideo Information fale pessoas beleza Hoje estou aqui para trazer um vídeo diferenciado que eu vou trazer aqui PR vocês rapaziada estamos aqui para trazer jogando aqui no derive né literalmente est jogando aqui no derive jogando aqui murder Mystery aqui no derive eu já joguei esse esse minigame há um bom tempo atrás tipo faz tempo mesmo galera tipo eu já gravava né fazer um desafio da mand né a época que o meu canal tava nascendo aí eu tava pensando aqui né nostalgia né jogando aqui myy e bom rapaziada deixa o like aí no canal ativa o… Read More

  • Unbelievable Minecraft TikTok Hacks 🔥💥🤯

    Unbelievable Minecraft TikTok Hacks 🔥💥🤯Video Information This video, titled ‘VIRAL MINECRAFT TIKTOK HACKS 🔥☺️😊!! |’, was uploaded by Quanny on 2024-05-07 10:52:06. It has garnered 7171 views and likes. The duration of the video is 00:00:15 or 15 seconds. how to make end portel in Minecraft https://youtube.com/shorts/Ttxat7xCroM?feature= share #shorts #viral #tiktok hacks #minecraft #hacks #viraltiktok hacks #ytshorts #ytshortsindia #4 #5 #6 #7 #8 #9 #10 #11 #12 #13 #14 #15 #16 #17 #18 #19 #20 #21 #22 #23 #13 #24 #25 #26 #27 #28 #29 #30 31 #32 #33 #newyear2023 #2023 #horrorgaming #2022 @techsgamerz youtube.com/@TECHSGAMERZ minecraft tiktok hacks minecraft minecraft hacks techno gamerz minecraft… Read More

TechnoVision – Minecraft 1.16.4: Fabric Modding Tutorial – Basic Blocks (#3)