Sunny Valley Studio – Create MINECRAFT in Unity – S2 – P17 Digging mechanic P2

Video Information

In the previous video we have implemented our digging mechanic and we have uncovered that there is one issue that our chunk is not updating the neighbors when we remove from it the edge block so we are going to fix this issue in this video okay so to do this we are

Going to open up our world script again okay and we need to go back to our set method that we have implemented you can use this drop drop-down list to find your setup method and beside updating this chunk we will need to add some code here

To find out if our block is on the edge of our chunk and if it is we will want to uncover which other chunks should we update after removing this specific block okay so let me paste the code so first thing as i have said we need to find out

If our block is on the edge of our chunk so we are going to pass the chunk is on edge to the if statement and this is on edge method we’ll take chunk dot chunk data so this is the data behind our chunk and our position that we have calculated

What is the position of the specific block so if we get this if statement we are going to perform some other logic but let’s start by implementing this method so let’s right click quick actions and generate this method inside our chunk static class right click on this and go to the definition okay

So this will be inside our chunk static class at the bottom i think and in here we are going to create logic such as vector3 int new position equals get block in chunk coordinates so we need to get the block in chunk coordinates that this method was implemented again in our chunk

And it simply converts the world position to chunk position so we are going to get the values from 0 to 15 or to chunk size and next we need to create this if statement so if newposition.x is equal to 0 or to the chunk size minus 1

This of course means that this is a on the edge so if either x y or z is equal to 0 or our x y or z is equal to chunk size minus one of course y would be checking chunk height minus one because this chunk height is a bit different

So in case any of those conditions is met we are going to return true else we are going to return false now we could of course call this right click and rename and let’s call it a world position since this makes a difference for us if this is a world position

And we can rename this one to be local position or chunk position since this is pretty important okay so if this is done let’s go back to our world script and we have received our response if this block is on the edge or not

If it is we need to get a list of neighbor chunks to do this we are going to create a neighbor data list so let’s maybe type list of chunk data this will be easier for our visual studio to create this method neighbors data list equals getchunk.getedge

Neighborchunk and we are going to pass here chunk data and the position again right click on this method and generate it using the quick action menu and right click on this and go to the definition okay let me paste the code here we are going to have a pretty long if

Check so we are going to pass here a vector 3 in new position which again this will be the world position and this will be the local position we can simply right click rename it and let’s call it world position and this will be vector 3 in

New position so let’s call it maybe local or chunk position this will be equal to get block in chunk coordinates check data and the world position if we have this we will need to have a list of chunk data neighbors to update equals a new list of chunk data

Now below there is a set of if checks so basically we need to check if our position.x is equal to zero so if on x we are at the position zero we need to get a chunk to the left from our chunk if this is 15 or the chunk size minus one

We need to get the positive chunk to the right and this will be again for y it will be up or down chunk and for z it will be chunk forward or chunk backwards from our current position so this is how we are going to access the correct neighbor

So again we will need to have a set of if else statements if xx equal to zero then we are going to add our neighbors to update add world data helper and we have this git chunk data method but we haven’t checked or changed its protection level so if right

Click on this and go to the definition we will see that this is a private method so i will make it a into a public method okay and this is our method inside our world data helper and this simply gets the chunk data from a position that will pass to it

And let’s go back to the chunk script and here we are going to get the neighbors to update odd world datahelper.getchunkeddata we are going to pass here the chunk data the argument to have passed to this method dot world reference and we are going to have the world’s position

Minus the vector3 in the dot right and this is simply vectors one zero zero so if we want to get the chunk to the left because x is equal to zero so we need to get the chunk to the left so if it is so we need to subtract one

From our current position to get the block inside the chunk to the left okay so you can simply copy this statement and instead of zero paste here chunk data.chunk size minus one so this is the last block in our chunk in the x-axis we’re going to add our neighbors to update

Simply world position plus the vector3 int dot right so we are going to add one to it to get the block in that chunk to the right again we can copy those statements and do the same for y axis so for y axis equals 0 the only

Difference will be that will be world position minus vector 3 into dot up so this is 0 1 0 and for the y equals chunk data.chunk height minus one we are going to simply add to this world position one on y axis and the same will be on the z values so

For the z value z equals zero we are going to use vector3 int dot forward which is 0 0 1 vector and if z is 0 we are going to subtract the one from our current position of the block for z equals to chunk data.chunk size -1

We are going to add a vector 3 in the dot forward so add 1 on the z-axis so that we can get the correct chunk now we cannot really add the else statement because our block can be on on the edge of our chunk so this would mean that we will get the

Position to the right to the left for example and downwards and this will mean that people need to couple of those conditions will be checked so this is why we need to have all those if statements instead of if else statements so at the end we are going to simply return

Our list of chunk data to get the neighbors that we need to update let’s file save all and let’s go back to our world script okay so we have this list so we can look for each var neighbor so this would be the chunk data neighbor data in our neighbor data list

For each of those now the first line would not need this actually because we want to only set the modified by the player to the check that was actually modified and the rest of those of them the neighbors will be rendered correctly because the data will be

In the dictionary when we render those additional chunks now the first line now we in this for each statement will be chunk rendered chunk to update we are going to access it by calling world data helper get chunk now we want to access this chunk renderer

So to get chunk we are going to pass neighbor data the twirled reference and the neighbordata.worldposition so let’s right click on this method quick actions and generate it okay and at the end if the chunk to update is not equal to null we are going to call to the update on this chunk

So we are going to update all the neighbors and at the end we are going to have the remaining code so chunk update chunk and return true so we have updated all the chunks so last thing to do we need to implement this git chunk method

So let’s right click on this and go to the definition okay so here we are going to have this simple logic we’re going to check if our world reference dot world data dot chunk dictionary so this is the dictionary of chunk renders contains this key so this will be our world position

We are going to return our world reference world data chunk dictionary and this chunk renderer on this position else we are going to return null so let’s make sure that we file and save all scripts and let’s go to the unity so now let’s press play and let’s see

When we generate our world okay i think that here we are going to reach the end of our chunks and let’s control shift p to pause our game and let’s see where we are now so this was the current chunk let’s click f to focus on it so our camera will not

Clip it let’s see here was the last chunk and this was the remaining chunk so that the neighbor so here we had this line crossing and this block if we take a look at it from the bottom it has no face here generated okay this doesn’t look terribly helpful

So now if we unpause our game and remove this block as you can see this and it was blocked from our chunk that was a neighbor and both of those has faces here so now what we could do if also is also to check if for example here we are going to

Update both of those chunks so let’s go to our corner of a chunk somewhere okay and i think this is here so as you can see we now have affected this chunk this chunk and i think we need to dig one block down and now we have updated this chunk i

Think this one and inside this one and inside this one so basically we are should be able to dig around here and it all should be updated correctly we should not see an empty space anywhere now of course it will not work for our water because we

Have no logic for the water to flow through those holes but basically now we have our digging mechanic complete last thing that i want to tackle here is the generation of our chunks that are underground in our world we had this method called get positions that player sees

Let’s right click on this this was in the generate world let’s right click on this and go to the definition and in here we have received those chunk positions around the player using the world data helper so i want to go to one of those methods

And here we have in the get chunk positions around the player we had this if statement to get the positions underground and i have told you that we are going to wait with this code until we implement the digging mechanic so let’s uncomment this code ctrl k ctrl u to uncomment it

And we have those checks here so this was for the git chunk positions around the player without one added to the range now below or above here we should have the second method here it is now here we want to again uncomment this code and we are not going to play around with

Adding one to this let’s now test let’s for now test if this all works let’s save this class and if we go back to unity okay if we try pressing play now and regenerating our world we’re going to get an error now exception is need to ask world for appropriate chunk

So this is the error that we have thrown inside our set block in our chunk static class and this is something that we have forgotten to implement or actually i have forgotten to implement because it was not needed until now so what we are going to call here is our

World datahelper.setblock and we are going to pass the chunkdata.worldreference localposition and our blocktype so as you might recall i think in the previous video we have implemented this method to set the block type for the specific position okay so let’s make sure that we file and save

All and let’s go back to unity okay so if we press play now we’re going to see that our chunks were rendered pretty much correctly and our lower chunks were also rendered for some reason using our setup that is incorrect so we did not want to render anything here all of those should

Be said to be of type of block there should be no error and of course we can see that we have loaded those chunks so we have this data but for some reason we have also used pearly noise value on it okay so how do we find out what is

Wrong well i’m going to go to our world script great now in our world generate world method that takes the parameter we are looping for each of those chunks we remove them and at some point we are generating the chunk data so let’s go to our for loop that loops

For each position in our chunk data positions to create and let’s add a break point here at line 59 now i’m going to exit the visual studio full screen mode and i’m going to simply attach this line to unity and now if we go back to

Unity okay make sure that you have this checkbox debugger attached to be blue i think you can you need to click it to enable it you can now press play and when we click on regenerate our visual studio should be shown or you can click it in your

Taskbar so we can click this um i think step into so f11 and we will go into our generate chunk data now this is all great we are entering this for loop so let’s click again this f11 to go into this for loop and now we are processing the position x and z

Which is zero and zero if we again click on step into we are going to go into process chunk inside our biome generator and here will be our issue let’s step over so f10 and here what is going on here we are calling start layer handler.handle

And we are passing y equals zero to until y equals is less than data.chunk height but our chunks beneath our terrain has the y equals to minus 100 or the minus chunk height so here is the culprit this for loop is passing wrong data on the y-coordinates to our

Layers so let’s stop debugging by pressing the square we are going to stop our game from executing the code and we are going to go back to our visual studio okay so inside our biome generator we have this bug inside our process chunk column we are

Using this for loop and in the for loop we are going to instead of calling zero we are going to call data dot worm position dot y let’s copy this because we are going to simply loop until y is less than theta that worldposition.y plus data the chunk height

Now in this instance for example if we go to our air layer you can see that we are taking in the x y and z positions and we are checking the y position against the surface height noise and as you might recall this is some value like eight

So if y which will in our case for the underground chunks will be minus 100 is minus 100 is greater than 8 not at all so if we go back to our umt we are going to see that in our terrain generator our biome generator uses the water layer then air layer

Surface layer and at the end we are entering the underground layer which is the last layer so if we edit it it is checking if y is less than service height noise and that’s exactly what is going on in our case we are going to set the

Chunk block to be this block type and in our case it is dirt so now if we save it if we press play we should see that if we regenerate our map we are going to have the correct um or rather we are not going to basically see anything

But we have a way to visualize our chunks if we select all the chunks now of course you could have provided a better way to store those chunks in one parent object in any case let’s select all of those chunks in our chunk renderer script we should have this show gizmo and as

You can see we are rendering all those gizmos and our gizmos takes six chunks at the bottom so this is the second level this is the first level of the underground terrain and those are our chunks at the top so we have rendered correctly our chunks or rather we have those chunks rendered

And all of those are said to be dirt we do not render anything we can only show this gizmo so we can disable those gizmos and now uh let’s select this chunk render script and disable those and in our game view we should be able to now dig

Into the ground without any issue because we have those chunks loaded correctly underground as you can see okay let’s select this tunnel and as you can see this is our tunnel is it rendered only the faces inside the tunnel but basically we can dig forward of course our camera

Is a bit misplaced here it is clipping through our underground terrain but basically we can delete those chunks here uh those blocks and you can see that we can dig underground we can look up and here is our exit again we can press v and spacebar and of course now we have this

This underground digging possible and as you can see it here is our tunnel that we have generated in the underground chunk now we are not going to go any further with this system of course when you are underground you could have unloaded all the remaining chunks

Around it you could focus on only those chunks below the surface of the train now this is something more advanced that you might want to tackle to make this uh world generator this voxel world generator more efficient and i think that it is finally time to implement our multi-threading because when we are

Moving this is driving me crazy when we are we need to load uh this weight and freeze to wait for all the chunks to be loaded so i want to mitigate it and in the next video we are going to start working on the multi-threading so that our world

Will be loaded on the fly we will not have this those severe fps drops okay if you’re enjoying this tutorial please leave a like leave a comment subscribe to the channel became a patron or youtube member it would help me a lot and if you want to explore how to create

A 2d platformer i’ll learn a bit more how to structure your code pace a bit better how to use design patterns in your game code check out my 2d platformer course ok see in the next video

This video, titled ‘Create MINECRAFT in Unity – S2 – P17 Digging mechanic P2’, was uploaded by Sunny Valley Studio on 2021-07-27 21:57:19. It has garnered 2257 views and 80 likes. The duration of the video is 00:21:10 or 1270 seconds.

In the Section 2 of this procedural voxel world generation Unity 2020 tutorial we will explore different procedural algorithms which uses Perlin noise to generate a nice looking landscape for our infinite voxel world.

Section 1 – Voxel Terrain Engine https://youtube.com/playlist?list=PLcRSafycjWFdYej0h_9sMD6rEUCpa7hDH

Section 2 – Procedural generation https://youtube.com/playlist?list=PLcRSafycjWFesScBq3JgHMNd9Tidvk9hE

Section 3 – Multithreading

Learn more from about Unity Game Dev in my video courses at: https://courses.sunnyvalleystudio.com/

Code files for everyone: https://www.subscribepage.com/voxel_world_tutorial_section_2

Project / code files for patreons: https://www.patreon.com/posts/voxel-world-end-53323870?utm_medium=clipboard_copy&utm_source=copy_to_clipboard&utm_campaign=postshare

Project / code files for YT members: Link in members only community post: https://www.youtube.com/c/SunnyValleyStudio/community

You can support me through Patreon: https://www.patreon.com/sunnyvalleystudio

Articles: Perlin noise – https://adrianb.io/2014/08/09/perlinnoise.html Domain Warping – http://www.nolithius.com/articles/world-generation/world-generation-techniques-domain-warping

Join the discord if you have any questions! https://discord.gg/RQEtYHz

  • Outrageous Minecraft Conspiracy Theories!

    Outrageous Minecraft Conspiracy Theories! Minecraft: Unraveling Conspiracy Theories Beyond Reason Delve into the mysterious world of Minecraft where conspiracy theories lurk in the shadows, challenging players’ perceptions of the game. From eerie encounters to unexplained phenomena, the realm of Minecraft is not just about building blocks and crafting tools. The Enigmatic World of Minecraft At first glance, Minecraft appears to be a simple sandbox game where players can unleash their creativity and explore vast landscapes. However, beneath the surface lies a realm shrouded in mystery and intrigue. Players have reported strange occurrences, from encountering ghostly figures to stumbling upon hidden messages etched into… Read More

  • Discover the Excitement of Minewind Minecraft Server!

    Discover the Excitement of Minewind Minecraft Server! Welcome to Newsminecraft.com, where we bring you the latest and most exciting news from the Minecraft universe! Today, we stumbled upon a fascinating video titled “マインクラフトでマイクイズ!なにがかわったかわかる?” which showcased a fun spot-the-difference quiz within the Minecraft world. While the video itself may not be directly related to Minewind Minecraft Server, it certainly highlights the endless possibilities and creativity that Minecraft offers to its players. The ever-changing landscapes and challenges presented in the video are just a glimpse of what you can experience on Minewind. If you’re looking for a server that embraces creativity, exploration, and a vibrant community, then Minewind… Read More

  • Ultimate Pumpkin & Melon Farm in Minecraft!

    Ultimate Pumpkin & Melon Farm in Minecraft! Double Pumpkin & Melon Farm (Automatic) with Corridor! Minecraft Are you looking to maximize your pumpkin and melon production in Minecraft while keeping things organized and easily accessible? Look no further! This design features a double automatic farm with a convenient pass-through corridor in the middle, making it a space-saving and efficient solution for all players, whether you’re a beginner or an expert! Key Features: 1. Easy-to-follow building guide: This design comes with a step-by-step guide that will help you set up your double automatic farm quickly and efficiently. 2. Automatic harvesting with redstone: Say goodbye to manual harvesting!… Read More

  • Cow’s Gift: Minecraft’s OP Surprise!

    Cow's Gift: Minecraft's OP Surprise! In the world of Minecraft, where cows roam free, There’s a new challenge, just wait and see. Milking these bovines, you’ll find a surprise, OP items dropping, right before your eyes. The cowpocalypse is here, a moo-mageddon tale, Where cows are the bosses, their power prevails. Minecraft madness, a game-changer indeed, With bovine bosses, it’s a whole new breed. Join us in this epic adventure, so grand, As we explore a world, crafted by hand. Minecraft mods, with a twist so divine, Cows dropping OP items, it’s quite a find. So dive in, embrace the challenge, don’t be shy,… Read More

  • Join Minewind Minecraft Server for Ultimate Control in the Circle

    Join Minewind Minecraft Server for Ultimate Control in the Circle Welcome to Newsminecraft.com, where we bring you the latest and greatest news from the Minecraft community! Today, we stumbled upon a fascinating YouTube video titled “Minecraft BUT, You Control the Circle🔴”. While this video may not be directly related to Minewind server, it showcases the endless possibilities and creativity that Minecraft has to offer. Imagine being able to control your own destiny within the Minecraft world, shaping the environment around you and creating your own unique experience. This level of control and freedom is exactly what you can expect when you join the Minewind Minecraft Server. With a vibrant… Read More

  • Rockin’ Roblox Death Ball: A Minecraft Mashup!

    Rockin' Roblox Death Ball: A Minecraft Mashup! In the world of Roblox, Death Ball is the game, Where players compete, seeking fortune and fame. Bladeball in hand, they battle with might, In a virtual arena, under the bright light. Brother Ian and Ethan, gaming duo supreme, Sharing their adventures, like a vivid dream. Subscribe to their channel, for gaming delight, With Minecraft, BTD6, they’ll take you to new heights. Join the fun, with rhymes and laughter, As they navigate worlds, ever after. Roblox, Minecraft, their passion so clear, With each new video, let’s give a cheer! Read More

  • Crafting a Portal to Miss Circle in Minecraft

    Crafting a Portal to Miss Circle in Minecraft Minecraft: Exploring the World of Miss Circle Portal Embark on a thrilling adventure in Minecraft as you delve into the mysterious Miss Circle Portal. Join the community in discovering the secrets and wonders that await in this captivating realm. Donation and Community Links For those eager to support the cause and be part of the community, links have been provided for donations and Discord group participation. Dive into the world of Minecraft with like-minded individuals and contribute to the growth of this exciting venture. Donation Link Discord Group Link Explore Unique Skins and Channels Enhance your Minecraft experience with… Read More

  • Join Minewind Minecraft Server for Epic Clutches and More!

    Join Minewind Minecraft Server for Epic Clutches and More! Are you ready to take your Minecraft skills to the next level? After watching that incredible video of extreme clutches in Minecraft, it’s clear that there’s always room for improvement and new challenges. That’s where Minewind Minecraft Server comes in. With a thriving community of dedicated players and unique gameplay features, Minewind offers an experience like no other. Join us at YT.MINEWIND.NET and immerse yourself in a world where creativity and strategy collide. Whether you’re into building elaborate structures, engaging in intense PvP battles, or simply exploring the vast landscapes, Minewind has something for everyone. Don’t miss out on… 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

  • Join Minewind: The Ultimate Minecraft Server Experience

    Join Minewind: The Ultimate Minecraft Server Experience Welcome Minecraft enthusiasts! Are you tired of dealing with technical issues while trying to download or install Minecraft Launcher from the Microsoft Store? Look no further! We have a solution for you. While watching the video on “How to Fix Minecraft Launcher Not Downloading or Installing Microsoft Store,” you might have realized the frustration that comes with encountering such problems. But fear not, we have a welcoming and thriving community waiting for you at Minewind Minecraft Server. Join us at Minewind Minecraft Server and experience a seamless and enjoyable gameplay experience without any technical hurdles. Our server IP is… Read More

  • SilvaMC

    SilvaMCJoining SilvaMC will immerse you into a world that carefully intertwines the nostalgic feel of vanilla Minecraft with a slew of custom features aimed at providing the best experience possible! The game has evolved, and for those of you returning; tap into your past, experience the present! We look to: • Keep Minecraft feeling, well…., like Minecraft! • Consistently provide updates to keep the gameplay fresh • Maintain a positive and friendly community, appropriate for most! play.SilvaMC.co.za Read More

  • Waychest SMP Semi-vanilla Whitelist 1.20.4 Custom Plugins

    Waychest SMP Semi-vanilla Whitelist 1.20.4 Custom PluginsServer Information: Server Name: Waychest Server Location: United States West Coast Website: waychest.com Wiki: waychest.com/info Version: 1.20.4 (Java; Vanilla client) Gameplay Types: [SMP] [Semi-Vanilla] [PVE] Waychest is a custom-built realization of the hypothetical Minecraft world where every world connects. It combines a public multiplayer server with a private Realm. Explore the world, discover custom items and blocks left behind by others, and maybe even meet fellow players. waychest.com/image1 waychest.com/image2 Feature Highlights: “Journey” System: Start your own journey with friends in a shared world. Waychests: Beacons guiding players to each other and rewarding exploration. “Waychest Flight” Minigame: Challenge to find Waychests… Read More

  • ATM9 – StyleLabor

    ATM9 - StyleLaborStyleLabor – ATM9 StyleLabor is a German Minecraft Discord that welcomes modpack players!Our goal is to provide a diverse gaming experience that is available to everyone and creates space for the passion and creativity of each individual member. But that’s not all – our **community is the focus!** Every member has the opportunity to submit project suggestions and actively vote on them. *This is how we shape the future of our server together.*Whether you’ve been playing Minecraft for a long time or are just starting out – you’ve come to the right place. Our door is open to you and… Read More

  • Minecraft Memes – Bedrock scum, prepare to weep!

    Minecraft Memes - Bedrock scum, prepare to weep!Looks like the “bedrock only” capes are getting more love than some people expected – time to start a protest in the virtual streets! Read More

  • Sigma Golem: The Hottest Block in Town

    Sigma Golem: The Hottest Block in Town Why did the sigma golem go to therapy? Because he had too many blockages in his emotional health! #minecrafttherapy #golemmemes #mentalblockages Read More

  • Discover the Excitement of Minewind Minecraft Server!

    Discover the Excitement of Minewind Minecraft Server! Welcome to NewsMinecraft.com, where we bring you the latest updates and trends in the Minecraft community! Today, we stumbled upon a fascinating video titled “マインクラフトでマイクイズ!なにがかわったかわかる?” which showcases a fun spot-the-difference quiz in the world of Minecraft. The video challenges viewers to identify subtle changes in the environment, providing a brain-teasing experience that is both entertaining and engaging. While this video may not be directly related to Minewind Minecraft Server, it highlights the creativity and ingenuity that players bring to the game. At Minewind, players have the opportunity to immerse themselves in a unique and dynamic Minecraft experience unlike any… Read More

  • Insane Minecraft Seed Finds

    Insane Minecraft Seed Finds Exploring the Rare Minecraft Seeds in the 1.21 Tricky Trials Update Embark on a journey through the rarest Minecraft seeds in the latest 1.21 Tricky Trials update. These seeds promise unique landscapes and structures that will captivate any Minecraft enthusiast. Whether you’re playing on Xbox One, Xbox Series X, Pocket Edition, Windows 10, Nintendo Switch, PS4, or PS5, these seeds are sure to provide an unforgettable gaming experience. Discovering the Top 20 Minecraft Seeds Delve into the list of the top 20 rare Minecraft seeds that have been carefully curated for the 1.21 Tricky Trials update. From sprawling landscapes… Read More

  • Unbelievable editing skills by JB Films

    Unbelievable editing skills by JB FilmsVideo Information This video, titled ‘editing be like’, was uploaded by JB films on 2024-03-03 23:13:32. It has garnered 85 views and 7 likes. The duration of the video is 02:39:06 or 9546 seconds. watching your awesome videos!! #reaction #minecraft want to tip me? click here! https://streamlabs.com/jbfilms3 #stopmotion #live #reaction https://www.patreon.com/user?u=72424917 support my patreon Music from Tunetank.com CloudSystem – Heat Waves (Copyright Free Music) Download free: https://tunetank.com/t/2rg8/5429-heat-waves Music from Tunetank.com CloudSystem – Fountains (Copyright Free Music) Download free: https://tunetank.com/t/2rg8/5522-fountains Music from Tunetank.com KOSATKA – Secular (Copyright Free Music) Download free: https://tunetank.com/t/2rg8/5432-secular Music from Tunetank.com Decibel – Sweet Heat (Copyright Free… Read More

  • Testing YouTuber Minecraft Fake Videos

    Testing YouTuber Minecraft Fake VideosVideo Information This video, titled ‘TESTING ALL YOUTUBER MINECRAFT SCARY FAKE VIDEO’, was uploaded by RAYJIO Gaming on 2024-02-16 02:49:57. It has garnered 43 views and 1 likes. The duration of the video is 00:03:05 or 185 seconds. TESTING ALL YOUTUBER MINECRAFT SCARY FAKE VIDEO @MineFlux @Mralpha13 @MrGamerJay Minecraft horror, Minecraft, Minecraft scary, Minecraft scary horror, Minecraft scary video, Minecraft horror video,minecraft horror myths ny gamer, minecraft horror myths in hindi, minecraft scary myths, minecraft scary myths that are actually real Minecraft fake, Minecraft fake horror, Minecraft fake scary, Minecraft fake horror video, fake scary minecraft videos, Minecraft roleplay #minecraft… Read More

  • I broke my computer playing Minecraft at 165 fps!!!

    I broke my computer playing Minecraft at 165 fps!!!Video Information This video, titled ‘I played 2k 165 fps in minecraft #shorts #minecraft #fireballfight #bedwars #hypixel #foryou’, was uploaded by ImLights on 2024-01-10 18:14:12. It has garnered 11471 views and 240 likes. The duration of the video is 00:00:37 or 37 seconds. I played 2k 165 fps in minecraft Read More

  • Shadow Despot’s Twisted Revenge! 😱 #glavstroy #sigma

    Shadow Despot's Twisted Revenge! 😱 #glavstroy #sigmaVideo Information This video, titled ‘Stop It… 😈 #glavstroy #sigma #minecraft #karma’, was uploaded by Shadow Despot on 2024-05-04 16:30:09. It has garnered 15651 views and 400 likes. The duration of the video is 00:00:13 or 13 seconds. Minecraft is a sandbox video game that allows players to explore a pixelated, procedurally generated 3D world with infinite terrain. Players can discover and extract raw materials, craft tools and items, and build structures or earthworks. The game features various modes, including survival mode where players must acquire resources to build the world and maintain health, and creative mode where players have… Read More

  • Epic 30 Day Minecraft Mod Challenge! #shorts

    Epic 30 Day Minecraft Mod Challenge! #shortsVideo Information This video, titled ‘Making A MINECRAFT Mod in 30 DAYS #shorts #minecraft’, was uploaded by Eyuuan on 2024-01-14 10:20:00. It has garnered 3053 views and 96 likes. The duration of the video is 00:00:10 or 10 seconds. Making A MINECRAFT Mod in 30 DAYS #shorts #minecraft I’m making a Minecraft mod in 30 days and I need your help on naming it and stuff I should add. Like and subscribe because I’m trying to get 1k subscribers Music Made By Laudividni Read More

  • Unbelievable Country Guessing Challenge! Subscribe Now!

    Unbelievable Country Guessing Challenge! Subscribe Now!Video Information This video, titled ‘ЕСЛИ Я УГАДАЮ ТВОЮ СТРАНУ ПОДПИШИСЬ!!!’, was uploaded by henkall on 2024-03-22 09:36:57. It has garnered 8648 views and 1345 likes. The duration of the video is 00:00:10 or 10 seconds. minecraft, minecraft 100 days, minecraft house tutorial, minecraft music, minecraft house, minecraft civilization, minecraft song, minecraft jj and mikey, minecraft videos, minecraft movie, minecraft aphmau, minecraft animation, minecraft asmr, minecraft armor trims, minecraft ambience, minecraft automatic farm, minecraft arg, minecraft aphmau and aaron, minecraft armadillo, minecraft animation movie, a minecraft song, a minecraft house, a minecraft parody, a minecraft movie, a minecraft horror story,… Read More

  • EPIC SHOWDOWN: Aphmau’s OLD vs NEW Minecraft Skin

    EPIC SHOWDOWN: Aphmau's OLD vs NEW Minecraft SkinVideo Information This video, titled ‘Aphmau old vs new Minecraft skin’, was uploaded by ZZ WORLD on 2024-03-26 20:27:05. It has garnered 11 views and 1 likes. The duration of the video is 00:00:08 or 8 seconds. Read More

  • 💥 Ultimate Terror Texture Pack Revealed by MRYTwasTaken!

    💥 Ultimate Terror Texture Pack Revealed by MRYTwasTaken!Video Information This video, titled ‘@aTerroRR Texture Pack 😎’, was uploaded by MRYTwasTaken on 2024-04-22 11:36:42. It has garnered 7 views and 3 likes. The duration of the video is 00:00:32 or 32 seconds. Main channel @MRYTxD tags credit rajeshwallahego- hypixel bedwars, bedwars, hypixel, minecraft bedwars, bedwars montage, bedwars hypixel, hypixel bedwars montage, bedwars asmr, bedwars minecraft, bedwars montage hypixel, minecraft hypixel bedwars, hypixel bedwars clutch, hypixel bedwars asmr, bedwars clutch, bedwars clutch montage, bedwars challenge, hypixel bedwars 100 stars, hypixel bedwars block clutch montage, 700 stars in hypixel bedwars, block clutch montage bedwars, hypixel bedwars gain stars fast tutorial,… Read More

  • Missed the Bus in Minecraft 😱 #MinecraftCrafts

    Missed the Bus in Minecraft 😱 #MinecraftCraftsVideo Information This video, titled ‘Pov: you miss the bus in MINECRAFT😅 #minecraft #shorts’, was uploaded by Livee Crafts on 2024-04-10 13:46:37. It has garnered 18335 views and 647 likes. The duration of the video is 00:00:58 or 58 seconds. Pov: you miss the bus in MINECRAFT😅 #minecraft #shorts minecraft, minecraft 100 days, minecraft house tutorial, minecraft music, minecraft house, minecraft civilization, minecraft song, minecraft videos, minecraft hardcore, minecraft live, minecraft jj and mikey, minecraft aphmau, minecraft addons, minecraft animation, minecraft avatar, minecraft asmr, minecraft arg, minecraft armadillo, minecraft armor trims, minecraft automatic farm, minecraft addons bedrock, a minecraft movie,… Read More

  • Anarchy For Life

    Anarchy For LifeGo to start.falix.cc and enter game2.falix.cc:54189 then join the server! IP: game2.falix.cc:54189 This is also lifesteal! You can join on any version! game2.falix.cc:54189 Read More

  • V For Vanilla | Vanilla SMP Semi-Anarchy 1.20.4 No Map Resets

    Server Information Server IP: VForV.net Server Discord: https://discord.gg/u2HcJxG4pS Version: Java 1.20.4 V For Vanilla is a vanilla SMP started on the 4th of December, 2021. Our goal is to provide players with a true vanilla, unaltered gameplay experience. We have minimal admin intervention, giving players the freedom to play the game how they like, while keeping things fair for everyone by banning cheaters. To keep the vanilla experience authentic there are no game-changing plugins or commands. We have a small community with players from all over the world. If you are looking for a true vanilla experience, we welcome you… Read More

  • Cobble Valley

    Cobble ValleyA community server where you can build anywhere you’d like, griefing is not allowed. This server is an attempt to have a world where everyone’s creativity can shine. While there is no world protection outside of spawn, your chests and furnaces will be locked protecting your loot and all griefing will be rolledback and result in a ban. Come leave your mark on Cobble Valley! Read More

  • Minecraft Memes – “Modern art vs Minecraft graphics”

    “Why did the creeper become an artist? Because he had a blast creating his masterpieces!” Read More

  • I rescue my epic dog in Minecraft #minecraftdogrescue

    I rescue my epic dog in Minecraft #minecraftdogrescue When you’re more concerned about saving your virtual dog in Minecraft than your real-life responsibilities. Priorities, am I right? #MinecraftProblems #DogLover #GamerLife Read More

  • Tommy’s Minecraft Horror Mod Mishaps

    Tommy's Minecraft Horror Mod Mishaps The Terrifying World of Minecraft Horror Mods Imagine a world where the familiar landscapes of Minecraft are twisted into a realm of horror and fear. This is the reality that players face when they delve into the dark depths of Minecraft horror mods. These mods introduce new elements that turn the game into a heart-pounding experience, filled with jump scares and spine-chilling encounters. Herobrine’s Haunting Presence One of the most iconic figures in Minecraft lore, Herobrine, takes on a sinister role in these horror mods. Players must navigate through the game while being stalked by this mysterious and malevolent… Read More

  • Join Minewind Minecraft Server for an Epic Adventure!

    Join Minewind Minecraft Server for an Epic Adventure! Welcome to Newsminecraft.com, where we bring you the latest and greatest in the world of Minecraft! Today, we stumbled upon a fantastic LEGO Minecraft stop motion video titled “Foxes and Zombies” created by Bozbet Productions. The story follows a man building a house for himself and his foxes, only to be interrupted by the sudden appearance of zombies. It’s a thrilling tale brought to life through the magic of LEGO animation. While watching this captivating video, we couldn’t help but think about the endless possibilities and adventures that await you on the Minewind Minecraft Server. Imagine building your own… Read More

  • 365-Day Wood Challenge: Day 10

    365-Day Wood Challenge: Day 10 The Minecraft Wood Challenge – Day 10 On day 10 of the Minecraft Wood Challenge, the player decided to try crafting an axe to save time. This simple tool can be a game-changer when it comes to gathering resources efficiently. Let’s delve into the details of this day’s adventure! Crafting Efficiency with an Axe By crafting an axe, the player aimed to streamline the process of collecting wood. Axes are essential tools in Minecraft for chopping down trees quickly and effectively. This strategic move showcases the player’s foresight in optimizing their gameplay. Setting Rules Along the Way Throughout the… Read More

  • EPIC Showdown! Secret Roleplays in Fairy Tail Rebirth Ep 3

    EPIC Showdown! Secret Roleplays in Fairy Tail Rebirth Ep 3Video Information This video, titled ‘Dramatic Showdown // Fairy Tail Rebirth Episode 3 (Minecraft Roleplay)’, was uploaded by Secret Roleplays on 2024-04-19 19:00:08. It has garnered 495 views and 28 likes. The duration of the video is 01:03:29 or 3809 seconds. Hey! Thanks for checking out this video! If you enjoyed it, please leave a like and or subscribe to keep up to date with future uploads! ^^ ——————————————————————————————————— = THUMBNAIL ARTIST = Secret: https://www.youtube.com/channel/UCT3svF-nwd_GZ9uAB45I8Dw = EDITOR = Secret: https://www.youtube.com/channel/UCT3svF-nwd_GZ9uAB45I8Dw = SKIN ARTIST = Secret: https://www.youtube.com/channel/UCT3svF-nwd_GZ9uAB45I8Dw = CAST = (Kiruh) Secret: https://www.youtube.com/channel/UCT3svF-nwd_GZ9uAB45I8Dw (Kai-o) See: https://www.youtube.com/@kieproductions (?) Sander: https://www.youtube.com/@charsander (Amaris) Ace:… Read More

  • Jiri Mokaro’s Epic Axolotl Hunt in Minecraft!

    Jiri Mokaro's Epic Axolotl Hunt in Minecraft!Video Information This video, titled ‘【 MINECRAFT 】adventure to find axolotl startoo !!!!’, was uploaded by Jiri Mokaro || ENVTUBER on 2024-03-25 03:48:33. It has garnered 278 views and 49 likes. The duration of the video is 02:38:26 or 9506 seconds. I can I can SOCIALS ✿ twt : https://twitter.com/jirimokaro fan discord : https://discord.gg/qyAvfgKuqF RULES be kind and respectful to everyone no harmful words to anyone if anyone says anything bad report them or ignore it do not talk about other vtubers or guests from past streams respect the mods no backseating!! only make decisions when I ask chat about… Read More

  • Insane Minecraft Bases Over The Years! 😱 (You Won’t Believe #shorts)

    Insane Minecraft Bases Over The Years! 😱 (You Won't Believe #shorts)Video Information This video, titled ‘Minecraft Bases At Different Ages😱 Wait For It. (World’s Smallest Violin) #shorts’, was uploaded by Fradinus on 2024-05-03 13:18:30. It has garnered 39757 views and 960 likes. The duration of the video is 00:00:40 or 40 seconds. Like and Subscribe❤️ Fradinus creates ,Shorts and Long Form Videos related to Minecraft, Minecraft Memes, Minecraft Challange, Minecraft Parkour, Minecraft Trends, Minecraft But, Minecraft Memes, Minecraft Skits, Minecraft Funny, Minecraft Build, Minecraft Tutorial, Minecraft Satisfying, Minecraft Bases at different ages, Normal vs Realistic Minecraft, IQ Tests and many other topics. Videos aimed to inform and entertain views about… Read More

  • Insane Minecraft Build Hack – GO VIRAL NOW! 🔥🤯 #shizo #shortfeed

    Insane Minecraft Build Hack - GO VIRAL NOW! 🔥🤯 #shizo #shortfeedVideo Information This video, titled ‘Minecraft build hack pocket edition 🤩🤩 #minecraft #viral #shots #shortfeed’, was uploaded by Text Tile gaming #4786 on 2024-04-10 11:24:29. It has garnered 9637 views and 285 likes. The duration of the video is 00:00:15 or 15 seconds. Read More

  • “EPIC FAIL! Trying to Kill 2 Players at Once in Skywars” #minecraft #skywars

    "EPIC FAIL! Trying to Kill 2 Players at Once in Skywars" #minecraft #skywarsVideo Information This video, titled ‘TENTEI MATAR 2 AO MESMO TEMPO, MAIS NÃO DEU CERTO ! #minecraft #mushmc #skywars #minecraftshorts’, was uploaded by Stompeyyy PvP on 2024-02-19 23:00:30. It has garnered 469 views and 12 likes. The duration of the video is 00:00:16 or 16 seconds. ✨Open the description ✨ 👇More information below! 🧭 Righetto Discord: https://discord.gg/yjdNS2bP7Z 🏷️ Yuri Righetto: https://www.youtube.com/@YuriRighettoZ 🏷️ Danyloww: https://www.youtube.com/@danyloww5899 🎮 Game: Minecraft 🎲 Version: 1.8.9 🍃 LIKE GOAL= [QUANTIDADE] ➡️ SERVER IP: loja.mushmc.com.br 📩 Professional Contact: Discord: Stompeyyy_ __________Recorders/Editors__________ Recorder: Action Editors: VEGAS 18 Pro ____PC Settings____ Processor: AMD RYZEN 5 2400G Ram: 16 GB… Read More

  • Unbelievable Minecraft TikTok Hacks! 😱 #shorts

    Unbelievable Minecraft TikTok Hacks! 😱 #shortsVideo Information This video, titled ‘Minecraft tik tok hacks #shorts’, was uploaded by DARK DEVIL YT 1M on 2024-05-08 06:13:52. It has garnered 12731 views and likes. The duration of the video is 00:00:52 or 52 seconds. #minecraft #viral #trending minecraft tik tok hacks,minecraft tik tok,minecraft tik tok hacks photo,minecraft tik tok hacks download,minecraft hacks,minecraft tik toks,tik tok hacks,real minecraft hacks,minecraft tiktok hacks pocket edition,minecraft tiktok hacks 2022,minecraft,minecraft viral hacks,minecraft tiktok hacks,minecraft tiktok hacks pocket edition 1.19,tik tok minecraft hacks,trying viral minecraft hacks,minecraft tiktok hacks pocket edition 1.18minecraft build hacks,minecraft hacks,minecraft,minecraft tik toks,build hacks minecraft,minecraft tiktok hacks,minecraft tiktok build hacks,minecraft… Read More

Sunny Valley Studio – Create MINECRAFT in Unity – S2 – P17 Digging mechanic P2