Minecraft 1.15.2: Forge Modding Tutorial – Custom Blocks (#4)

Video Information

Hey guys it’s Thomas here with techno vision and welcome to the next part of our modding tutorial series in this episode we’ll be creating a custom basic block and it’s not going to do anything special yet that’ll be in a later video but it’s just gonna be a basic block

That you can place down and you can brake so first thing you’re gonna want to do when you’re in your IntelliJ is come to the registry handler class here and that’s in the utilities and you can see here that we registered our our items here and for the sake of learning

Purposes I’m gonna actually register all of the objects you make in this class but I just want to mention that you’re welcome to register these different objects you know like items and blocks and separate classes so if you’d like to have an items class in a blocks class

You can totally do that I just want to put it all in one place you can see sort of what it looks like side by side alright so once you’re inside of the registry handler class first thing you want to do is create a new deferred register for our blocks so right below

This items deferred register we made just make a little space and we’re gonna type public static final deferred register and this is gonna take in the parameter of block because we are holding blocks in this deferred register and the name is gonna be blocks at all capitals this is gonna equal a new

Deferred register of course and the arguments that we’re gonna pass in is pretty much the same except for block so Forge registries dot blocks comma and then of course you want our mod ID so and I believe it’s yeah we haven’t registered statically so tutorial dots mod underscore ID and again replace

Tutorial with the name of your mod of course and a semicolon at the end of course and we also have to import block it’s very important and import it from net minecraft I’ll block alright so now that we have this deferred register the next thing we actually want to do is

Make sure that it’s registered so if we go to this init method we have here it closed up on me make a few spaces or I guess just one and below this items not register we have here we’re gonna do the same thing but with blocks so blocks dots register

And arguments again are going to be pretty much exactly the same in fact they are the same so we can just copy this whole line up here right-click copy right-click paste and send me clone at the end here and I forgot to add the s there we got blocks because we need this

To be the same name as this of course so that’s gonna make sure that it actually gets registered in our actual mod when it when time comes for that and now we actually can make the actual block itself okay so you can see here on the

Left hand side that we have an item’s package and we’re gonna make another one for blocks so let’s just close this up real quick and in our comm dot your name dot the name of your mod package right here we’re gonna right-click new and we’re going to create a blocks package

So package and we’re just gonna name it blocks and hit enter and inside of this package of course is going to be all of the different classes that we use to hold our blocks and also a block item base which again you don’t have to use

But in my case I’m gonna use so now we can actually make the items so right below our items tag we ever here or I guess our notes we can make a few spaces and I’m gonna add another note slash slash and this is gonna be blocks and

Then I’m going to add another note below it maybe two spaces is time slash slash block items so you might be a little confused here basically in in Minecraft since forge you know in particular there’s actually two types of an item or a block rather so there’s the actual

Block that you place on the ground and that you mine of course and then there’s the block item which is what is held in your hand and they’re actually two separate things and you have to register them separately as well which is kind of confusing for people

Who are new to to forge and modding but I promise you it’s not that bad so first you want to make the actual block so let’s type public static final and this is gonna be just like with the items or registry object so registry object except this time it’s gonna take in a

Block and the name of this is going to be the name of your item more or less your block underscore block so if you’re making something like let’s say crying obsidian you know that’s what you’re making for your block it’s going to be crying underscore of the city

Underscore block just like that so you want the name and then an underscore block in my case I’m gonna make a ruby block because we just made a ruby item so ruby underscore block and again use those underscores for spaces but the name does not really matter here it’s

Just sort of for the code so this is gonna equal blocks in all capitals my bad blocks okay I’m not supposed today blocks dot register there we go dart register and inside of here again very similar to how we did this up above we’re gonna do the

Name of our actual block so in my case Ruby underscore block and a comma and we’re going to use a lambda here to create our or instance our class so Ruby block is gonna be the name of mine colon colon new and this class right here has

Not been made we’re gonna make it in a second but just name this class again the same name that you have here but instead of semicolons just to use camel case so again if your block was crying obsidian it would be crying oh not capital crying a city in blocked just

Like that and that should be how you name your class this is actually kind of important so again mine is a me Ruby block and we’re gonna make this class in a second so go over to your blocks package here this is where that that ruby block is actually going to be so

We’re gonna right-click new Java class and we’re gonna name this ruby block again the same thing we named it right here in the lambda we’re gonna enter and I’m gonna add this to my git repository but don’t worry about that you’re not using that right now so this class is

Ruby block class is going to let’s take a look at our items real quick item base so you can see item base extends item and that means it’s inherently inheriting everything from the item class well in our block base here or I guess this is in a block base but it’s a

Specialized class for this particular block it’s gonna extend block so extend block and we’re probably gonna have to import block import class from net da Minecraft op block and hover over it again and you want to click on create constructor matching super and we’ll deal with this in a second but just move

It down a little bit so ruby block is extending block it’s inheriting everything from the block class and that’s what we’re gonna do is super here in a second so what we want to do is set its properties to whatever we want this this block to be so let’s get rid of

Properties here because we’re gonna make our own and inside of here we’re gonna type block instead of super I should specify block dots properties for the capital P dot creates and then in the create method we’re gonna pass in a material and this material is going to

Be the material of your block so material dots and you can see there’s a bunch of different options here these are all different material types for blocks and let’s see what should we choose well a ruby block is gonna be similar to like an iron block right so I

Guess it doesn’t really matter we can always come back to it but I’m gonna make mine material dier n– where is it material de iron there we go we can double click that and you can see here it is material iron in all capitals and we can actually move this a little what

Is this a parenthesis parenthesis and a semicolon down a bit and we’re gonna add some more properties here so you can indent with a tab here a couple times and I’m going to add dot hardness and resistance and this is going to actually set the hardness value and the resistance value

And these are all over the place in Minecraft but you can find them by just going on the Minecraft Wiki in my case I’m gonna make my hardness 5.0 f comma and then I’m gonna make my resistance 6.0 F with this I’m not gonna add a semicolon because we’re not done yet

So again it IntelliJ is really nice it’s gonna tell you what is what the hardness value here is how long I believe it takes to mine your block and the resistance value is how long it takes or not how long it takes how easy it is to

Be blown up by TNT so you know how wool is like you know super easy to blow up with TNT but obsidian never gets blown up that is what this resistance value will be and the higher the hardness value is before the F the harder it is

To break and we can add another dots here and you can keep adding dots here and you can see there’s a bunch of different options you can play around with all of these but I’m just gonna show you a couple just so you sort of have some examples under your belt so

I’m gonna do dots sound don’t sound and instead of here this dots sound method we’re gonna pass in a sound and this is you know just like it sounds gonna be the sound of the oh if that was a fun pun just like it sounds

Um so just like it sounds it’s gonna be the sound type of the the block so sound type dots and you can see there’s a bunch here since I did iron I’m gonna do dot metal dot metal there we go and again all this is doing is setting the

Sound type to metal by and that’s basically making the sound metal when you walk on it and when you mine in I believe as well alright so the next property we need to set is the harvest level and we can come down here and type dot harvest level and we’re gonna pass

Into here a number between zero and three and the number zero is gonna correspond to wood one is gonna correspond to stone and gold two is going to correspond to iron and three is going to correspond to diamond and essentially what these numbers mean and what harvest level means is the tier of

Tool that you need to actually harvest this block so what does that mean well in minecraft you know the Abyssinian block for example you need a diamond pickaxe to harvest an obsidian block otherwise it’ll just disappear as soon as you mine it same thing with the redstone ore or

Diamond blocks for example those are those or blocks you can’t harvest them unless you have an iron pickaxe so what this harvest level is saying is the number that you pass into it is the minimum required tool tier that you need to harvest the block

So I guess a way to say this is let’s say you pass in one what that’s saying is you need to harvest this block with at least an iron sorry a gold or stone pickaxe otherwise it will not harvest if I were to put the max number of three

That would require a diamond pickaxe to mine the block and if I wanted to put zero in there that would mean that I could use any of the tool types I can use wood stone gold iron diamond and it would all work so the higher the number

Is all the way up to three the higher the tier you require to harvest this block so because this is similar to an emerald block I want it to be I want you to be required to use an iron pickaxe to actually mine it and harvest it so I’m

Gonna type 2 because that corresponds to an iron pickaxe and after that we can now set our tool type so dots tool or I guess it’s harvest tool harvest tool and inside of here we’re gonna pass in a tool type so tool type dots and you can

See here we have axe pickaxe and shovel so a you know pretty self-explanatory this is the tool that you require to actually mine this block you know axes correspond to wood blocks pickaxes to stone and shovels to dirt and those sort of things so in this case it’s a metal

Type block it’s a ruby block so we’re gonna want to use a pickaxe but if you were making for example a wood block a new wood type you would do dot axe and you would set that in or you know if it was dirt you could do shovel but in my

Case I want people to have to use a pickaxe and that’s pretty much it we can bring this up this parentheses semi-colon up a little bit file save all and that’s pretty much it for our Ruby block okay so now you can actually go back to your registry handler class because

We’re done here and we can import our Ruby block because you can hover over it and import class and that will import the actual Ruby block itself and again this is going to be a different for every single block that you make this specific area it’s not like item base

Where we just copy it over this has to be specific to every block you make because the actual blocks all have different values or at least they they probably will so that’s why you have to make a new class every time just wanted to throw that out there so now we have

To actually make the block item which is what is held in your hand so right in our block items here this is where all the block items are going to be so just make a space and we’re gonna make a public static final and again it’s gonna

Be a registry objects and it’s gonna take in an item but we’re gonna name this Ruby underscore block so you want to take this exact same naming off here right click copy you want to paste it in so whatever you have there you want to take and then add an underscore item so

It’s basically the name of your block and then block item so again copy and paste this name and then add an underscore item to it so then we’re gonna do equals and this is going to equal items dot register because it is technically an item and we’re gonna pass

In the name and this is going to be the same name we have up here so you can just copy and paste this name up here copy paste and add a comma and we’re gonna make do another lambda statement here so two parenthesis with an arrow

Let’s that up real quick an arrow and this is going to make a new block item base item base and this is gonna be we need to pass something into this of course we’re gonna pass in our block so the block we just made Ruby underscore block I’m going to

Right-click copy and you want to paste that into your block item base paste it in paste dog gets there we go and I know this is just barely about to fall off the edge of the screen here but again if you don’t understand lambdas that’s okay that’s really not the point in this

Video pretty much we’re making a new instance of our block item base class which we’re gonna create in a second here and we’re passing in our block that we made so we’re basically assigning our block here we’re assigning it to the of the block item so the program actually

Knows and again you don’t need to use a block item base class if you don’t want to some people say that’s bad practice I’m sure it is but just for the the sake of not having to reuse so much code I’m gonna use one so inside of your blocks

Package here we want to right-click new Java class and again same name you put here block item base and this is gonna be for yes ID that real quick this is gonna be for basic block items so again these aren’t gonna do anything crazy but

If you want to block item that like you know deletes a chunk or something then that’s not going to be this video not yet at least so this is gonna extend its gonna extends block item because again it is a block item and it’s gonna import this

Class real quick and we want to hover over this this red line and click create constructor matching super and just like last time push it down a little bit and we’re actually going to remove this properties here because we’re gonna make that ourselves we don’t need to pass it

In we’re just gonna keep block and then block in and you can just name a block actually that’s just simpler so for let’s get rid of everything in super we want to pass in our block value here of course so we’re going to type block

And then comma and then we need to pass in of course our properties because that’s what block item requests from its super so we’re just going to make a new item dots properties for the capital P except this one’s gonna have a visit is

It a capital P I think it’s a capital P it’s always different I swear item dot properties yeah and with with two parentheses here of course dot group and inside of this just like with our item based class here we have our tutorial tab we’re gonna add in our custom tab as

Well so tutorial dot time and this is just gonna make sure that our item or our block item is actually in the creative tap but again if you wanted to use a vanilla items tab you would just do item group dots and then you would

Get a vanilla one but I’m gonna use our custom tab that we just made in last episode so tutorial dots have and we have to import tutorial import class and that’s pretty much it for this block item base class again you don’t need to use this if you don’t want to but I’m

Just gonna to limit code reefs so go back to your registry handler class and hover over block item base and make sure you import it okay so now things are gonna start to get a little crazy because we’re gonna actually make the JSON files to register the the actual

Texture so and there’s actually a lot of JSON files involved with blocks a lot more than items so just make sure you pay close attention in this part so instead of your resources folder and I guess actually first we should close out of some of these tabs here just because

We have so many files have all there we go so instead of our resources folder here we can go to assets thought the name of your mod and first thing we’re gonna want to do of course is make sure that we actually have the name of our

Object set so go to Lang your Lang folder and en underscore us JSON double click that and right below our item group or I guess so we can do above we’re gonna make a a new entry here and this is going to be block I guess I have

To add some quotation marks quotation marks and then inside of that block dots your mod ID in my case tutorial again your mod ID is what you have right here set in your app mod tag in the main class so block dot mod ID dots and then you’re gonna go to

Registry Handler and copy this name you set right here Ruby underscore block just copy it go back and paste it in so it’s block dot your mod ID dot the name of your your block and colon and this name this name is going to be again

Whatever you want it to be so in my case I’m gonna name it block of Ruby and again this is the in game name so whatever you put here will show up in the game and make sure there’s no comma in the last statement and you can file save all all right so

Now that’s done we can close out of en underscore US stop Jason now in our assets dot tutorial folder we’re gonna have to right-click create a new directory and we’re gonna name this block States block states hit enter and this is gonna hold all of our block

State Jason’s so we can actually go ahead and create that right now we can well I guess first we should make the the models yeah let’s do the models first so instead of models we have our item our item page and I want to actually flatten this out so we can see

It so I believe you go up to settings here and go to uncheck compact middle packages and that should show the items there so we can open up item and we can see our Ruby Jason in there so in the models package or I guess as a directory

We want to right-click create a new directory and name this block not block with an S just block an answer so now our models file should have the block file and item file and instead of our is it block seats know instead of textures there we go we want to right-click

Create a new directory and we want to name this blocks and this one actually has an S so it’s blocks with an S good answer and that’s gonna hold our textures and now we’re done with directories so that all that craziness you can see even I was getting confused

It’s a lot so now we need to make the jason’s so first jason if you go into the description of this video there will be a bunch of links to some pay spins so the first paceman you’re gonna go to is the model / block 1 and you can actually I again I

Have all of them laid out for you here just for ease of access because it’s kind of annoying to code these by hand so right click copy this model / block go to your IntelliJ and we’re going to go to models block and in our block directory in models we’re going to right

Click new file and we’re gonna name this the name that you have set right here for your Ruby block so Ruby underscore block again it’s this name right here not the one in all capitals and you want dots Jason at the end hit enter I’m gonna add it to the repository and you

Can right click and paste into it the code and all you have to do now is pretty much change your mod ID in the block name so mana T excuse me is gonna be tutorial and the and again mod ID is right here and the block name is gonna

Be this thing again right here this name copy paste it in for block name there we go so just a quick rundown this is saying that the block is a block and it’s a cube so and we’ll be dealing with these later and making them different shapes of course that’s what this is

Going to deal with but right now it’s just a basic cube and it’s saying the textures point to our tutorial mod in the block / ruby block that’s where the actual that’s the pathway to the file so we can file save all and now we need to

Go to item here and we need to make a JSON for our actual item block so right click new file and this is going to be the exact same name Ruby underscore block it’s all JSON hit enter and we can add it of course now go back to the

Description of this video and go to the second link and that’s going to take you to the models item and you copy this right-click copy and paste it back in and this is just setting the parent it’s saying this block item is its parent is the block and it’s saying

The block is the parent is the Ruby block so again change your mod ID to tutorial or whatever your mod ID is and change block underscore name to your block name again I have it right here oh there we go right click copy and paste it in Ruby

Underscore block just our name and we can file save all now there’s actually one more jason we have to make I know it’s crazy and this is gonna be the block states so go to block States you’re the new director you just made right click new file and this file is

Gonna be again same exact name they’re all gonna be the same name Ruby Jason oh now I’m Ruby underscore Jason that’s that’s our old item Ruby underscore Blanc Jason again same name we’re gonna add it and go to the last link in the description and it should take you to

This block state space pin and you can copy all this code right click copy and you can paste it in and again change your mod idea to tutorial or whatever your mod ID is and block name to again what we have here Ruby underscore block the name paste it in there we go

And this block state is just setting the block state to a regular model and there’s no really real variants but this is what we’ll be using to create custom blocks in the future that have multiple sides with different textures like a furnace things like that that’s what

This will deal with but we’re just gonna do a basic one Freight now you can file save all and the last thing we have to do is actually get our our texture so if we go to our desktop here I actually have a texture already set of course for

Ease of access but you can make one yourself all again I’ll link another video in the description on how to make a texture with a free program or you can use Photoshop and one thing you want to make sure right click properties again you want to make sure with details that

It is 16 by 16 pixels otherwise it most likely will not I know there’s some other pixel sizes that do work but make sure for now it’s sixteen by sixteen that’s very important and you want to name it again the exact same name you have sets in your registry

Handler this name so we’re using this name again this name right here this very important name for all of our JSON files and inside of them as well to point to other files and we’re using it for the name of our our PNG file here so

Ruby underscore block PNG so go to your minecraft modding folder go to tutorial mod or whatever the name of your mod is go to source main resources assets tutorial textures blocks and you want to drag it into blocks and we can close out of here and if we go back to IntelliJ

You can see that in our textures blocks package here we do have our Ruby underscore block type in G so that is working great and now if we actually run the game we’ll actually see our blocks so we’re pretty much done and again to

Run the game just go up to the top right here make sure you select run client and hit this green triangle so I’m gonna run the game and I’ll see you guys inside alright so we’re inside of the game now and we can open up our creative menu and

Go to the next tab and click on our tutorial creative tab that we just made and there we go we can see our block is inside of the game and it does say block of Ruby and of course we can place it down and has a texture and just listen

To sound real quick yeah so you can see that that is the the metal sound that we set and also if we were to for example walk on it real quick you can hear the the walk sound as well just what we set yeah so it’s a little faint but you can

Hear it so also we should just test that real quick let’s get a shovel and axe let’s get like a diamond axe so if we go to game mode survival you can see that if we use an axe it will not work very well as a harvestable tool because we set it

To pickaxe and same as shovel it will not work very well which is good that’s just how we want it but if we were to use say a diamond pickaxe you can see that we can super easily mine it because that is what we set as our tool type and again

We set the the what is it the material the harvest level to iron so we should be able to harvest a with iron you can see it’s taking a little bit time because we did set a pretty high hardness level but a stone pickaxe in and below will pretty much not be able

To mine it you can see it’s taking a long time now of course our block is not going to actually drop anything because we’d have to create a loot table and that’s a whole nother video because it’s a little complicated but eventually we will get to that and we will make your

Block drop it’s either itself or something custom alright so that’s gonna do it for this episode of our modding series thanks guys so much for watching I hope you learned a lot and I will see you guys in the next episode you

This video, titled ‘Minecraft 1.15.2: Forge Modding Tutorial – Custom Blocks (#4)’, was uploaded by TechnoVision on 2020-04-30 03:25:00. It has garnered 49574 views and 1717 likes. The duration of the video is 00:28:11 or 1691 seconds.

Learn to code a Minecraft mod from scratch in this complete tutorial series! 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

● Discord: https://discord.gg/ZsB3Eha ● GitHub Repository: https://github.com/TechnoVisionDev/Minecraft-1.15.2-Modding-Tutorial.git

— Music —

● [No Copyright] Chill Lofi Hip-hop ● Phil Smiff – lake.side ● Xori – Dreamin ● DJ Quads – Chillin ● 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

  • Join Minewind Minecraft Server for Cozy Builds!

    Join Minewind Minecraft Server for Cozy Builds! Welcome to Newsminecraft.com, where we bring you the latest and greatest in the world of Minecraft! Today, we stumbled upon a charming YouTube video titled “How to build a cute bakery โ€ข Cozy bakery โ€ข Minecraft.” The video showcases a cozy bakery with a nice counter and a secret cash register, creating a warm and inviting atmosphere for players to explore and enjoy. While the video may not be directly related to Minewind Minecraft Server, it does highlight the creativity and imagination that players can bring to their Minecraft worlds. Just like the adorable bakery featured in the video,… Read More

  • Level up your Minecraft skills on Minewind Server!

    Level up your Minecraft skills on Minewind Server! Are you looking to take your Minecraft skills to the next level? Look no further! While watching this amazing video on Minecraft tips and tricks, you may have realized that you need a new challenge. That’s where Minewind Minecraft Server comes in. Imagine a world where you can showcase your pro skills, build incredible structures, and engage with a community of like-minded players. Minewind offers a unique and exciting gameplay experience that will keep you coming back for more. Join us at Minewind by entering the server IP YT.MINEWIND.NET in your Minecraft client. Explore new adventures, conquer challenges, and… Read More

  • Beating Minecraft in One Stream?!

    Beating Minecraft in One Stream?! Conquering Minecraft in One Stream: A Legendary Feat Embark on a thrilling journey through the pixelated world of Minecraft as our fearless adventurer sets out to conquer the game in a single stream. Armed with determination and a touch of humor, this player dives headfirst into the challenge of defeating the Ender Dragon on the very same day. A Streamer’s Epic Quest Streaming live for all to witness, our intrepid hero takes on the ultimate goal of slaying the formidable Ender Dragon. With meticulous planning and quick reflexes, every move is calculated to ensure success. The excitement is palpable… Read More

  • Love Blooms in Minecraft School: Part 5

    Love Blooms in Minecraft School: Part 5 In the Minecraft world, love and drama unfold, With animations that are bold and stories untold. Join the channel for perks, a community to find, With artwork that’s divine and a creative mind. The characters in the story, emotions run deep, With twists and turns that make you leap. But amidst the chaos, a love story shines bright, With moments of joy and moments of fright. The narrator’s voice, sharp and keen, Describing each scene with a storytelling sheen. Emojis and rhymes, playful and light, Bringing Minecraft news to new heights. So dive into the verse, no need for… Read More

  • Experience Thrilling Adventures on Minewind Minecraft Server

    Experience Thrilling Adventures on Minewind Minecraft Server Looking for a thrilling Minecraft experience? Are you a fan of horror games and looking for a new challenge in Minecraft? Look no further! Join the Minewind Minecraft Server for an adrenaline-pumping adventure like no other. Imagine exploring a world filled with suspense, surprises, and jump scares just like in “The Conjuring 3” horror map. Get ready to test your survival skills and bravery in a dark and eerie setting. With a community of dedicated players and exciting gameplay features, Minewind offers an immersive experience that will keep you on the edge of your seat. So, if you’re up… Read More

  • Europe or Minecraft? A Rhyme to Unearth

    Europe or Minecraft? A Rhyme to Unearth Are you from Europe, upside down you stand, In Minecraft world, exploring the land. Streaming on Twitch, with viewers in tow, Playing games together, putting on a show. Variety is key, Among Us and more, Keeping it fun, never a bore. Dead By Daylight, Marbles too, With chat by your side, always true. Dytolan is the name, search and find, Join in the fun, leave your worries behind. Like, dislike, comment away, In this gaming world, we all play. Read More

  • Join Minewind: The Ultimate Minecraft Server Experience

    Join Minewind: The Ultimate Minecraft Server Experience Welcome to Craftolution, where we stand together! A place where adventure and friendship intertwine. Here on Craftolution, where blocks shine bright: creativity awakens, an endless source since 2011, a place full of permanence, where friendships bloom hand in hand. Craftolution, where dreams live, striving for the stars together. Survival, Freebuild, just fun. On Craftolution, we are at home. Your creations, safe, protected, and fine. Here on Craftolution, they will never be alone. No PvP stress, just peace and time for adventure and creativity. Each world, a new adventure, so wonderful. On Craftolution, we are the pioneers, strong together in… Read More

  • Block House Fly: Minecraft’s Sky High Pie

    Block House Fly: Minecraft's Sky High Pie In the world of Minecraft, where creativity thrives, Cube Xuan brings laughter with each of his dives. With animations that are funny and bright, He crafts a world that brings pure delight. No need for propellers, we can still fly, In this blocky world, where dreams reach the sky. So join Cube Xuan on this magical ride, And let your imagination run wild, side by side. Subscribe to his channel, for joy every day, With MC animations that will sweep you away. So come on, let’s dive into this Minecraft land, With Cube Xuan leading the way, hand in… Read More

  • Crafty Kerem & Kemal: Onur’s Minecraft Mishap!

    Crafty Kerem & Kemal: Onur's Minecraft Mishap! In the world of Minecraft, where adventures unfold, Kerem and Kemal, together, so bold. Caught Onur in their sights, a thrilling chase, With twists and turns, in every race. Onur and Ceren, trying to escape the city’s grasp, But Kerem and Kemal, won’t let them pass. With police on their tail, a dangerous game, In every move they make, they face the flame. Hold on tight, my love, the road is rough, But honor and Ceren, won’t have enough. To escape the justice, that’s closing in fast, In the world of Minecraft, where the die is cast. With Kerem… Read More

  • Join Minewind Minecraft Server and Become the Best!

    Join Minewind Minecraft Server and Become the Best! Welcome to NewsMinecraft.com! Today, we’re excited to share with you a thrilling gaming experience that will take your Minecraft adventures to the next level. If you’re a fan of games like BTD6 and Roblox, then you’re in for a treat. Join us as we explore the exciting world of Minewind Minecraft Server. Brother Ian and Ethan are avid gamers who love to challenge themselves in various games. In their latest YouTube video, they dive into the world of BTD6 and showcase their skills and strategies. While the video may not be about Minewind, it’s a testament to their passion… Read More

  • ThePickaxeSMP

    ThePickaxeSMPThis is The Pickaxe SMP for minecraft premium and cracked version.MC Version: 1.20.1Ranks:[OWNER][ADMIN][MODERATOR][VIP][DEFAULT]Java and Bedrock Read More

  • Minecraft Memes – Gordon Ramsay roasts Minecraft

    Minecraft Memes - Gordon Ramsay roasts MinecraftGordon Ramsay’s reactions to finding out someone built a poorly designed kitchen in Minecraft would be pure gold. Read More

  • Crafty Trials Update: 15 Paintings, Minecraft’s New Score

    Crafty Trials Update: 15 Paintings, Minecraft's New Score In the Minecraft world, a new update arrives, With 15 paintings, a feast for our eyes. Tricky Trials is the name, bringing new art, To decorate our builds, a creative spark. Java Snapshot 24w18a, Bedrock Preview too, Both versions get the update, for me and for you. Hyazora on Twitch, sharing the news, With a grin and a spin, no time to lose. Minecraft news, in rhymes we trust, Crafting updates, a must we must. Stay tuned for more, the gaming delight, In every rhyme, the truth takes flight. Read More

  • Cobblestone Tower: Hotter Than Your Mixtape #minecraft #meme

    Cobblestone Tower: Hotter Than Your Mixtape #minecraft #meme When you spend hours building the biggest cobblestone tower in Minecraft, only for a creeper to come along and blow it up in seconds. #minecraftproblems #gamerstruggles ๐Ÿ˜‚๐ŸŽฎ๐Ÿ’ฃ Read More

  • Chinese Hacker Targets Us in Minecraft SMP!

    Chinese Hacker Targets Us in Minecraft SMP! Minecraft Shenanigans: A Dive into Swift SMP Session 1 Introduction In the vast world of Minecraft, where creativity knows no bounds, a new chapter unfolds with the Swift SMP Session 1. As players embark on this journey, a mix of excitement and mystery fills the air. Let’s delve into the intriguing events and features that make this session unique. Illegal Commands and Creative Mode The allure of accessing illegal commands and gaining creative mode has captivated many players in the Swift SMP. From uncovering glitches to secretly using creative mode for extended periods, the gameplay is filled with unexpected… Read More

  • INEVERMINE Update: BIG Minecraft Bedrock NEWS!

    INEVERMINE Update: BIG Minecraft Bedrock NEWS!Video Information This video, titled ‘HUGE NEWS FOR MINECRAFT BEDROCK PLAYERS!!!’, was uploaded by INEVERMINE on 2024-04-09 21:00:06. It has garnered 1351 views and 36 likes. The duration of the video is 00:08:18 or 498 seconds. Where about to get more Minecraft bedrock servers, and these servers do things we have not seen before so lets get into it! I hope you guys enjoy! If you guys would like to support this channel and all the fun stuff I do on here link the link below to join and get EARLY ACCESS TO NEW VIDEOS, MEMBER PRIORTY TO COMMENTS AND… Read More

  • Insane Halloween Minecraft Build Hack!

    Insane Halloween Minecraft Build Hack!Video Information This video, titled ‘amazing Minecraft build hack in Minecraft PE #minecraft #halloween #minecrafttutoria’, was uploaded by GAMER RAVIN on 2024-01-02 12:19:58. It has garnered views and [vid_likes] likes. The duration of the video is or seconds. Read More

  • Unbelievable Transformation in Minecraft by Rey980

    Unbelievable Transformation in Minecraft by Rey980Video Information This video, titled ‘Some changes and then Minecraft’, was uploaded by Rey980 on 2024-03-06 06:19:18. It has garnered views and [vid_likes] likes. The duration of the video is or seconds. Want To Join The Call? join the Discord im sitting in lounge! Support the stream: https://streamlabs.com/itsrey9808 Join The … Read More

  • Surprising Mom with EPIC Minecraft Birthday Timelapse!

    Surprising Mom with EPIC Minecraft Birthday Timelapse!Video Information This video, titled ‘Minecraft Birthday Timelapses: Mom’s Birthday Timelapse!’, was uploaded by Zeta Beetle on 2024-01-08 02:30:39. It has garnered 235 views and 8 likes. The duration of the video is 00:22:41 or 1361 seconds. When I uploaded Ninja Cricket’s birthday timelapse, I hinted at doing 1 for Mom next. Let the record show, I’m a man of my word. It’s Mom’s birthday, and I’m uploading this, regardless of how late it is. Bc, by the end of the day, I want my longest time supporter to be the main 1 that sees this! #minecraftbuilds #minecrafttimelapse Tracks (in… Read More

  • ๐Ÿ”ฅHUNT DRAGON NOW! ๐Ÿ‰[MINECRAFT ADD-ON] #ADSA

    ๐Ÿ”ฅHUNT DRAGON NOW! ๐Ÿ‰[MINECRAFT ADD-ON] #ADSAVideo Information This video, titled ‘MARI KITA BERBURU NAGA – MINECRAFT ADD-ON’, was uploaded by ADSA on 2024-02-26 01:40:16. It has garnered views and [vid_likes] likes. The duration of the video is or seconds. Help continue to support this YouTube channel by subscribing, liking and sharing. Thank you for clicking on this video. Read More

  • Monster School: Sad Zombie Bride – Minecraft Animation

    Monster School: Sad Zombie Bride - Minecraft AnimationVideo Information This video, titled ‘Monster School : Zombie x Squid Game SAD STORY OF POOR BRIDE – Minecraft Animation’, was uploaded by GA Animations on 2024-03-15 09:32:09. It has garnered 102243 views and 860 likes. The duration of the video is 00:28:51 or 1731 seconds. Monster School : Zombie x Squid Game SAD STORY OF POOR BRIDE – Minecraft Animation https://youtu.be/WGqtzJOFMSM Hello! ๐Ÿ’š Thank you for coming to GA Animations Channel! ๐Ÿ’• Have a nice time watching video on our channel. Minecraft is my greatest passion of all. Give your feedbacks, comments and likes my videos! โ–บ Disclaimer: GA… Read More

  • 100% Real: FLATLEY SHOCKS Viewers on Turd Island

    100% Real: FLATLEY SHOCKS Viewers on Turd IslandVideo Information This video, titled ‘Turd Island (Chill Stream)’, was uploaded by FLATLEY TALKING on 2024-03-18 17:12:38. It has garnered 238 views and 17 likes. The duration of the video is 01:53:30 or 6810 seconds. #drama #commentary #tea mILTOWN BEST, SMP, MINECRAFT NEWS CALL IN’s WELCOME jks its ok ill also be talking about nothing Read More

  • Mind-Blowing Minecraft Parkour & Pixel Art! (PPL Request)

    Mind-Blowing Minecraft Parkour & Pixel Art! (PPL Request)Video Information This video, titled ‘Satisfying Minecraft Profile Pixel Art ( PPL Request YT ) Part 3,672’, was uploaded by Relaxing Minecraft Parkour on 2024-01-16 07:45:14. It has garnered 94 views and 20 likes. The duration of the video is 00:01:01 or 61 seconds. Satisfying Minecraft Profile Pixel Art ( PPL Request YT ) Part 3,672 #minecraftpe #algorithm #artist you can get your short request video and post on your youtube channel mentioned me. if you also want to make your profile, just comment and then like the video. Please be patient if it takes a long time but I… Read More

  • EPIC Minecraft Note Block Cover of Hikaru Nara by Mr Aldi

    EPIC Minecraft Note Block Cover of Hikaru Nara by Mr AldiVideo Information This video, titled ‘Goose House – Hikaru Nara (Your Lie In April) Minecraft Note Block Cover’, was uploaded by Mr Aldi on 2024-01-14 08:00:07. It has garnered 513 views and 34 likes. The duration of the video is 00:04:38 or 278 seconds. In this video I made Goose House – HIKARU Nara (Your Lie In April) Minecraft note block cover Thank you for watching my videos. I hope you enjoy. ————————————————————— Tools : Capcut (Video Editing) Pixellab (Thumbnail) MCPE (V 1.20.32) ————————————————————— ๐ŸŽตOriginal Song๐ŸŽต Please Subscribe Because Its free Like and share if you like my videos You… Read More

  • Cosmic Unknown

    Cosmic UnknownWelcome to Cosmic Unknown ! We strive to have a friendly and creative community with fun events. Our server is a modded server with the main focus being on Dinosaurs and Magic. We also have tech mods, farming mods. We tried to make our modpack fun for everyone! play.cosmicunknown.net Read More

  • Ethis SMP Semi-Vanilla SMP 1.20.4 Tight Knit Community 16+ LGBTQIA+ friendly Whitelist

    Welcome to Ethis Community Hello there! Welcome to Ethis. A warm, welcoming and inclusive community awaits your arrival. Here are some highlights: Key Features: Thorough Applications: Ensuring a positive and inclusive environment. Voicechat: Connect with others in a stress-free way. Shopping District: Explore and contribute to the cyberpunk district. No TPA/Land Claiming: Simple and vanilla gameplay. Gamenights: Weekly events for fun and socializing. Additional Details: Regular Events: Keep the inspiration flowing with in-game activities. 5+ Years of History: A strong, long-lasting community. Diverse Player Base: From builders to casual players, all are welcome. DM for discord invite! Read More

  • Reichan

    ReichanReichan is a brand new Survival focused server currently running on version 1.20.4!โ€ข ESTABLISH YOUR LEGACY: Stake your claim to the world and protect your land as your own using GriefPrevention. Invite friends to your claim and create an own town together. (Soon.. Towny)โ€ข QUEST AFTER QUEST: New Quests every week, twice the amount for Champions. Well developed and thoughtout Quests give your Survival experience an extra touch of fun.โ€ข RENT, SELL, PROFIT: In the world of Reichan, everyone has the unique opportunity to rent exclusive Markets, providing you with the privilege of independently selling the resources you’ve gather.Collaborate, compete,… Read More

  • Minecraft Memes – Dinnerbone, the Upside-down Builder

    Minecraft Memes - Dinnerbone, the Upside-down BuilderWhy did Dinnerbone join a band? Because he heard they were looking for a new bass player! Read More

  • Chambers’ New Great Room: Minecraft 1.20.5 Progress!

    Chambers' New Great Room: Minecraft 1.20.5 Progress! In the world of Minecraft, a new update is near, With chambers and rooms that will bring us cheer. New progressions and trials to explore, With twists and turns that we can’t ignore. The Great Room in Chambers, a sight to behold, With new features and challenges untold. The Trap Changes in Chambers, a test of skill, Navigate carefully, or you may meet a thrill. The Room Tuba, a place to relax and unwind, A peaceful retreat for the creative mind. The Gathering Room, where friends can convene, To share stories and adventures unseen. The Room Change Eruption, a… Read More

  • Zombie Apocalypse: Minecraft Edition

    Zombie Apocalypse: Minecraft Edition In 2024, just offer the Minecraft zombies a peace treaty and some diamond armor – they’ll be too busy admiring their new bling to attack you! #minecraftpeacekeeping Read More

  • Minecraft 1.20.4: 7 Wild Mods You Need!

    Minecraft 1.20.4: 7 Wild Mods You Need! Exploring the Top 7 Mods for Minecraft 1.20.4 Embark on a new adventure in the Minecraft universe with these top 7 survival mods that promise to enhance your gameplay experience. From overhauling the overworld to adding immersive portals, these mods bring a fresh perspective to the game. William Wyther’s Overhauled Overworld Experience a revamped overworld with William Wyther’s Overhauled Overworld mod. Available for both Fabric and Forge 1.20.4, this mod introduces new elements and challenges to keep you engaged. Farmer’s Delight Dive into the world of farming with the Farmer’s Delight mod. Designed for Fabric and Forge 1.20.4, this… Read More

  • Minecraft Hacking Shenanigans

    Minecraft Hacking Shenanigans The Minecraft Wurst Client Mod Hack: Elevating Your Gaming Experience Are you ready to take your Minecraft adventures to the next level? Look no further than the Minecraft Wurst Client Mod Hack. This powerful tool is designed to enhance your gameplay experience in the blocky world of Minecraft like never before. Unleashing a World of Possibilities The Wurst Client Mod Hack offers players a wide range of utilities and cheats that go beyond the standard Minecraft experience. From flying effortlessly across landscapes to easily locating valuable resources, this mod opens up new avenues for exploration and creativity. Versatility at… Read More

  • B๐–†๐–˜๐–Ž๐–ˆM๐–†๐–“123 – Epic Roblox Vertical Stream! (7K?)

    B๐–†๐–˜๐–Ž๐–ˆM๐–†๐–“123 - Epic Roblox Vertical Stream! (7K?)Video Information This video, titled ‘Roblox Vertical Stream! (Maybe 7K?)’, was uploaded by ๐•ญ๐–†๐–˜๐–Ž๐–ˆ๐•ธ๐–†๐–“123 on 2024-03-23 18:17:56. It has garnered 9733 views and 31 likes. The duration of the video is 02:50:45 or 10245 seconds. i just play gaem #lethalcompany #roblox #livestream #fyp #popular #minecraft #company #lethal #steam #live #mario #fun Read More

  • Digging My Grave: Vintage Story Madness

    Digging My Grave: Vintage Story MadnessVideo Information This video, titled ‘Digging Myself a Grave in Vintage Story’, was uploaded by Robotaus on 2024-04-22 08:10:42. It has garnered 1045 views and 50 likes. The duration of the video is 00:14:26 or 866 seconds. This is game about surviving in a blocky world and building whatever you want. It’s not Minecraft I swear. Music from https://filmmusic.io “Vegas Glitz” by Kevin MacLeod (https://incompetech.com) License: CC BY (http://creativecommons.org/licenses/by/4.0/) Music from https://filmmusic.io “Sneaky Snitch” by Kevin MacLeod (https://incompetech.com) License: CC BY (http://creativecommons.org/licenses/by/4.0/) Music from https://filmmusic.io “At Rest” by Kevin MacLeod (https://incompetech.com) License: CC BY (http://creativecommons.org/licenses/by/4.0/) Music from https://filmmusic.io “Monkeys Spinning… Read More

  • Dunners Duke Brave 2b2t Nether Highway Adventure

    Dunners Duke Brave 2b2t Nether Highway AdventureVideo Information This video, titled ‘2b2t. Traveling The Nether Highway’, was uploaded by Dunners Duke on 2024-05-15 07:03:34. It has garnered 98 views and 6 likes. The duration of the video is 01:47:54 or 6474 seconds. 2b2t (2builders2tools) Welcome to 2b2t, the oldest anarchy server in Minecraft. Established in December 2010, 2b2t has become a legendary realm where chaos reigns supreme. With no rules, and no boundaries, Hack cheat steal, players are free to explore, build, and survive in a world where the only limit is their imagination. Prepare yourself for a journey like no other, where danger lurks around… Read More

  • “Insane Dragon Sand Art Build in Minecraft” #pixelart

    "Insane Dragon Sand Art Build in Minecraft" #pixelartVideo Information This video, titled ‘Snoopy and Woodstock Sand Falling Art Short #minecraft #pixelart’, was uploaded by Dragon on 2023-12-09 18:30:09. It has garnered 7670 views and 222 likes. The duration of the video is 00:00:27 or 27 seconds. Read More

  • ๐ŸšจINTENSE gameplay on the trapped smp๐Ÿšจ

    ๐ŸšจINTENSE gameplay on the trapped smp๐ŸšจVideo Information This video, titled ‘๐Ÿ”ดplaying on the confined smp๐Ÿ”ด’, was uploaded by sourspider on 2024-03-16 23:14:04. It has garnered 78 views and 7 likes. The duration of the video is 02:57:56 or 10676 seconds. ๐Ÿ”ดplaying on the minecraft server๐Ÿ”ด JOIN THE DISCORD-https://discord.gg/PmWzGUst tags ___________ minecraft, minecraft hunger games, minecraft survival island, minecraft mods, minecraft song, minecraft style, minecraft xbox 360, minecraft parody, minecraft herobrine, skydoesminecraft, minecraft songs, captainsparklez, minecraft yogscast, yogscast minecraft, yogscast, minecraft skydoesminecraft, sky does minecraft, gangnam style, tobuscus minecraft, minecraft trolling, pewdiepie, smosh, tobygames minecraft, minecraft roller coaster, lets play minecraft, tobuscus, tnt minecraft parody, seananners,… Read More

  • “EPIC Navy Teaming Up with Viewers! (SSG, Hypixel, + More!)” – Cartseem

    "EPIC Navy Teaming Up with Viewers! (SSG, Hypixel, + More!)" - CartseemVideo Information This video, titled ‘๐Ÿ”ด๐“›๐“ฒ๐“ฟ๐“ฎ! ๐“ฃ๐“ฎ๐“ช๐“ถ ๐“•๐“ฒ๐“ฐ๐“ฑ๐“ฝ๐“ผ ๐”€/ ๐“ฅ๐“ฒ๐“ฎ๐”€๐“ฎ๐“ป๐“ผ (๐“ข๐“ข๐“–, ๐“—๐”‚๐“น๐“ฒ๐”๐“ฎ๐“ต, + ๐“œ๐“ธ๐“ป๐“ฎ!) ๐Ÿ”ด /p join Cartseem’, was uploaded by iiNavy on 2024-02-17 14:33:08. It has garnered 75 views and 3 likes. The duration of the video is 01:11:50 or 4310 seconds. #minecraft #bedwars #speedtelly #bedlessnoob #godbridge #hypixel #pvp #telly #viral #entertainment #moonwalk #breezlybridge #derp #bedlessnoob #minemenclub ๐ŸŒˆ2๐“š ๐“Ÿ๐“ช๐“ฌ๐“ด๐ŸŒˆ https://www.mediafire.com/file/e80abl… Updated Link. If it didn’t work for you, it should now. I made it a zip instead of winrar ๐Ÿ’Ž Crystalland ๐““๐“ฒ๐“ผ๐“ฌ๐“ธ๐“ป๐“ญ ๐“ข๐“ฎ๐“ป๐“ฟ๐“ฎ๐“ป ๐Ÿ’Ž (An Upcoming Fastbuilder + Rankup Parkour Network!) ๐“ฅ๐“ธ๐“ฒ๐“ฌ๐“ฎ ๐“’๐“ฑ๐“ช๐“ฝ๐“ผ ๐”€๐“ฒ๐“ต๐“ต ๐“ฑ๐“ช๐“น๐“น๐“ฎ๐“ท ๐“ฑ๐“ฎ๐“ป๐“ฎ ๐“ถ๐“ธ๐“ผ๐“ฝ ๐“ธ๐“ฏ ๐“ฝ๐“ฑ๐“ฎ… Read More

Minecraft 1.15.2: Forge Modding Tutorial – Custom Blocks (#4)