Unlock the Ultimate Resource Pack Secrets!

Video Information

Hey guys this is agent mindstorm and welcome back to my bedrock edition resource pack tutorial today we’ll be covering advanced block features before this video you need to have watched the getting started tutorial to get the default files the editing textures video to understand textures and the animated textures video

To learn about json formatting and flipbooktextures.json the first file we’re going to look at today is terraintexter.json it’s in the textures folder this file is mainly used to map texture files to what’s known as an atlas tile which is something that other files like blocks.json and flipbooktextures.json use

Inside the texturedata object is a list of all the atlas tiles used by the pack each atlas tile is an object that has a textures property this property can be defined by a single texture file path or an array of texture file paths the point of connecting a texture file

To an atlas tile is that the game now knows to interpret the file as a block texture most atlas tiles are only mapped to one texture file but a few are mapped to multiple when an atlas tile is attached to multiple texture files you’ll know that it’s used on a

Block that has multiple data values with unique textures data values are part of the block id system used by bedrock edition they were originally created to save block ids as the game used to have a limited amount instead blocks that were mostly the same with only texture differences like

Dirt and coarse dirt were assigned data values the data value tells the game which variant of the block id to use continuing the dirt example the block id minecraft colon dirt with the data value 0 is normal dirt but setting it to data value 1 makes it coarse dirt

If we look at the dirt atlas tile it’s linked to two texture files textures block slash dirt and textures block slash coarse dirt just so you know the data values don’t correspond to the arrays one to one look at the farmland textures even though the farmland block has eight data

Values it only has two file paths which file path controls which data values texture is entirely hard coded and you can only tell by looking at the file paths in the default resources now why would you ever want to modify this file well there are two main applications for terrain texture.json

The first is that this allows tweaks to be applied through other resource packs what do i mean by that if you change the file path of a texture that will affect every resource pack applied above yours in global resources think of it like this the game first asks what’s this block’s id

The block id determines the blocks.json entry which we’ll talk about later the blocks.json entry lists the atlas tiles to be used in the block which are set into raintexture.json terrain texture links the atlas tiles to texture files by changing the texture file paths into rain texture we can swap textures around

Without ever having to touch an image file for example i created a resource pack called undying corals that uses the terrain texture file to replace all dead coral textures with living ones since undying corals changes the file paths of dead coral textures resource packs applied above it get

Their living coral textures applied to dead coral too the only way that the resource pack would fail to replace dead coral with living coral is if a higher resource pack also changed the file paths of dead coral textures this same idea can be applied to any block want dirt to look like netherrack

Easy just do a find and replace that finds dirt’s file paths and replaces them with netherax want all your concrete to look like glazed terracotta because you’ve lost your mind just replace the file paths for concrete with the glazed terracotta ones to explain the second reason you’d want

To edit terraintexture.json we need to explain blocks.json this file is in the main resource pack folder next to the manifest when you open it you’ll see a long list of objects each with the name of a block this is a list of every block in the game sort of

There’s a unique entry for each block id but not each data value that means that the properties of dirt and coarse dirt for example are controlled by the same object because they have the same block id each block id entry can be assigned up to five properties these properties are textures carried textures

Sound isotropic and brightness gamma we won’t talk about brightness gamma though because it doesn’t do anything the most important property here is textures because all other properties will be set to default values if they’re blank but not textures the textures property can either be defined by a single atlas tile from

Terrain texture.json or an object listing different atlas tiles for different sides of the block it can’t just be a file path to a texture the file paths can only be set into raintexture.json you have to use both files to texture a block the textures property has three

Ways to texture all the faces of a block the first is to only define it by one atlas tile that texture will then be applied to every side of the block to give the top bottom and sides different textures you should define textures by an object containing up down and side properties each

Property in the object can be defined by a different atlas tile which will be specific to that side of the block the up down and side object will at the bottom and top of the block use unique textures but all four sides of the block will still use the same texture

To give every side a unique texture put up down east west north and south properties in the object by using cardinal direction properties instead of a blanket side property you can give every side of a block a different atlas tile there are blocks listed in blocks.json that use all of these methods already

If you don’t want to write the object out by yourself i’d recommend you copy one of the textures objects that’s already filled out and replace the atlas tiles with the ones you want on your block the carried textures property is exactly the same as the textures property but it

Only replaces the textures when the block is in your inventory your hand the ground or an item frame this is useful for blocks that have color overlays like the top of the grass block if there wasn’t a separate colored atlas tile for grass blocks they would be gray in inventories

Choosing not to add a carried textures property will make it look the same in block and item form i already covered the sound property in the advanced sounds tutorial so you should watch that video if you want to know how to use it the final property is

Isotropic from what i could figure out online the word isotropic is actually used incorrectly in this file usually it means something’s property is the same no matter what way it’s facing here though it basically just means can randomly rotate isotropic can only be set to true or

False if a block doesn’t have the isotropic property it defaults to false this property is mainly used on blocks that can appear in large numbers like dirt sand and netherrack you can limit it to certain sides of a block using an object with up down and side properties like the way

Unique textures are set on each side if the up property is set to true and the down property is set to false then the top of the block will randomly rotate but the bottom won’t to test what we learned so far let’s change a few blocks to have some nightmarish designs

I’ve already created textures for each of them by modifying our old oak planks texture however these textures are in a folder that doesn’t even exist normally i called it agent mindstorm underscore textures just in case there was any doubt to add these beautiful textures to blocks we have to first map them to

Atlas tiles into raintexture.json i’m just going to copy the entry for acacia planks and delete the file path so that i don’t have to retype everything first i’ll replace the atlas tile name of acacia underscore planks with red underscore beautiful underscore design then i’ll write the file path that goes

Textures slash blocks slash agent mindstorm underscore textures slash red beautiful design just so you know the atlas tile name doesn’t have to match the file name it’s easier to remember if they are the same though since i have six quote-unquote beautiful designs i’ll copy and paste the red designs entry

Five times then change the word red to the color of each different texture with my six different textures assigned atlas tiles into raintexture.json we can now map them onto a block the block i’m going to map them to is the block of diamond i’ll search for diamond in blocks.json

Then find the right entry i want to use a different texture on all six sides so i’m going to copy a six-sided textures object from a different block entry the nearby dispenser entry has a six sided textures object so i’ll copy it from there and replace the default textures property

Now i’ll replace the atlas tiles on each side of the block with the atlas tiles i created into raintexture.json let’s test it in game alright let’s search for block of diamond and oh my this is most certainly the block of the highest beauty i would go as far as to say that the

Block of diamond has never looked better however i think there are two more things we still need to do before the block is truly perfect for starters i want the carried texture to still look normal so that the player is caught off guard when the true beauty of the block is revealed

This is one of the advantages of adding new textures by using terrain texture.json instead of replacing existing files you can use the original texture and your new one in tandem by not replacing the original even though the diamond block doesn’t normally have a different carried texture we can add the carried textures property

Ourselves and it will work fine i’ll set it to the diamond underscore block atlas tile so that it looks normal until you place it down i also want the block to randomly rotate but not on the south side or the top i’ll copy the six sided object from the

Textures property and paste it after an added isotropic property just like the carried textures property the isotropic property works on any block even if the block doesn’t normally randomly rotate i’ll replace all the atlas tile names with true except for the south and up properties because i don’t want those ones to rotate

The perfect block should now be working correctly let’s test it again what words come to your mind when you see this beautiful majestic grandiose seizure whatever it may be we have succeeded in our quest to forge a block that lacks any sort of imperfection so i’d say we did pretty well today

However there are a few loose ends i couldn’t fit very well anywhere else in the video so i thought i’d shove them all here at the end we’ll start with two extra texture features you can use into raintexture.json the first texture feature is the ability for textures to have random variations

Since the default game doesn’t have any textures that randomly vary we have to add the json for it ourselves in the description of this video there’s a basic object with a variations array that you can copy and paste into any textures array the object only counts as one texture

File path in the list so for example you could add variations to normal sand while leaving red zand with its default texture if you wanted to add unique variations to multiple textures in a single atlas tile you just have to add a separate object with the variations array to each one

If the atlas tile that you want to add variations to doesn’t have a textures array you’ll have to add the array brackets yourself if you try to do that and your json stops working you can always use the website jsonlint to check your formatting which i showed in the sound basics

Tutorial once the variations array is in place you can start adding random variations to your texture you can add as many variations as you want but each variation needs its own object in the variations array those objects have path and weight properties path is defined by the file path to the variations texture

By the way every variation of a single texture entry has to be in the same folder it doesn’t matter where that folder is or what it’s called as long as every variation is in it the weight property is defined by a number that number helps decide how common the variation will be

The game calculates the rarity of each texture variant with this equation which is basically the weight of one variation divided by the sum of the weights of every variation in the variations array if you have two texture variations one with a weight of three and the other with a weight of one

The first texture will be selected seventy-five percent of the time and the second will be selected twenty-five percent of the time set every weight to one to spread the variations evenly the other feature we need to cover in terraintexture.json is the ability for textures to have color overlays

The overlays take a color written in hexadecimal and multiply it onto a texture it works best on grayscale textures so anything that’s just black and white tga textures treat color overlays from terrain texture.json like any other color overlay so pixels with a very low opacity are not changed

The only textures that use the overlay feature by default are the grass side textures but it works on any block adding a color overlay to a texture is pretty easy all you have to do is replace the normal texture file path with an object containing two properties

The two properties in an overlay object are overlay underscore color and path path works the same way as the path property from before overlay color is defined by the hexadecimal color you want to overlay on the texture to add a color overlay to a texture in a variations array just add the overlay

Color property inside the object with the path and weight properties when adding a color to the overlay color property make sure you include the octathorp or the hashtag or the number sign or the pound sign or the hash or the waffle or the tic-tac-toe board or whatever name you call the square

With a bunch of lines through it you should put it before the six digit hexadecimal code so the game understands that this is a color to get a hexadecimal color code from another image open the image in paint.net choose the eyedropper tool and click on the color you want then press the more

Button by the color wheel to expand the color window the hexadecimal code is in this box copy it then paste it as the overlay color property paint.net doesn’t include the octathorp when you copy the hex code so you have to type it yourself we can actually recreate the way that a

Color overlay will look in game by using paint.net this will save you a lot of time you would waste constantly tweaking the color and testing it over and over in game to recreate it open the texture that you’re going to put in overlay on and paint.net

Add a new layer above the image and fill it with the color you want to test even though we can’t see the original texture at all now it’s still under the color layer now click the wrench on the layers window while the color layer is selected and change the blend mode to multiply

This is how your texture will look once it gets the overlay from terrain texture.json if you want to change the color you’re testing select the fill bucket and choose any opaque pixel on the color layer that will change the color you’re multiplying to the one that’s currently selected

Now that you know about data values and random block variants we can go back to flipbooktextures.json and explain the features that i ignored in the animated textures tutorial the most significant one is how you animate a block that only exists with a data value for example how would you animate coarse

Dirt without animating normal dirt too the animation object for a data value block is pretty much the same as it is for a normal block but with one added property this property is atlas underscore index the atlas index property tells the game which texture to animate from a list of textures

You know how the dirt atlas tile has the dirt and coarse dirt textures in it the atlas index tells the game which one to replace if the atlas index is zero then the normal dirt texture will be replaced with an animated texture if it’s one corster’s texture will be replaced instead

The simplest way to think about it is that the atlas index tells the game how many textures to pass before reaching the one to replace when it’s 14 for example you’re telling the game to pass the first 14 textures in the list and replace the 15th

So what if you want to animate a random block variant you can choose which texture variation to animate by adding the atlas underscore tile underscore variant property to the animation object this property works the same way as the atlas index property but it chooses from the variations array instead

Setting the atlas tile variant to zero selects the top variation one selects the one under it and so on just like atlas index here’s a fun fact the developers used atlas tile variant wrong in the default files it seems like they thought it was the same thing as atlas index which it

Isn’t at all don’t pay attention to the way it’s used on bubble columns and respawn anchors because it’s completely wrong while we’re in flipbooktextures.js i might as well explain the replicate property just so you understand the whole file this property tells the game to interpret the texture’s width differently

Instead of doing what it would do normally which is taking the width of the texture and using that for the height of each frame the replicate property tells the game there are this many copies of the same texture in a line that way each texture grid is interpreted as one animation frame

When an animated texture with the replicate property is applied to a block the texture size is scaled down to the pixel width divided by the number you set as the replicate property this is how the game makes flowing lava and water have a consistent pixel size to other blocks even though the flowing

Liquids sometimes have textures longer than 16 pixels the replicate property should really only ever be set to 2 and only used on flowing liquids in the vanilla game you can set it to higher numbers but your texture grids have to match and that only creates more work for you

Back in blocks.json there’s one entry that isn’t a block id that i should explain that entry is format underscore version which is defined by an array with three numbers in it this tells the game how to interpret blocks.json by giving a version number the numbers in the array here mean that

The file is version 1.1.0 you never need to edit this property unless you’re updating an old blocks.json to a newer format the final things we need to talk about are the properties at the top of terrain texture.json the first one num underscore mip underscore levels sets something called

The mipmap level of the game by default the mipmap level is 4. what a mipmap level does is decrease the size of distant textures to make the game run better the default level of 4 means that the length of a block texture will be divided by 4 past a certain distance

The best way to show this in my opinion is to show the files of legacy console edition there are three different images with the default textures in the legacy console edition files each with a different mipmap level this first image is at map level 0 so it matches the default textures

This second image has a midmap level of two so each texture is eight by eight pixels instead of sixteen by sixteen this last image has a map level of four so each texture is only four by four pixels since distant textures are so small you can barely even notice that they’re

Lower resolution than normal the padding property is related to mid map levels i’m not actually sure what it does but it should be set to two times the mid map level to remove mipmap levels and padding you can set them to zero but watch out there’s a bug that causes there to be

Small gaps between some blocks when you set mipmap levels and padding to zero after padding we have the texture underscore name property this should never be changed it tells the game that this file is terraintexture.json if you mess with this property the file will not work don’t touch it

The last property aside from the texture data object is resource underscore pack underscore name this should be set to vanilla unless you’re making a companion behavior pack or mod 2 in which case it should be set to your mod’s namespace just leave it alone if you don’t know what it does

And with that you have learned everything you can do to blocks in resource packs that’s not hyperbole you have now literally learned everything you can do with blocks in a resource pack the next resource pack tutorial will be the first in a series of ui tutorials

If you want to prepare for that make sure you fully understand json formatting and minecraft textures for now though i do want to tell you all thanks for watching and i will see you later You

This video, titled ‘Advanced Blocks (terrain_texture.json, blocks.json, Variations, and More!) – Resource Pack Tutorial’, was uploaded by AgentMindStorm on 2020-12-15 15:00:10. It has garnered 23654 views and 756 likes. The duration of the video is 00:19:20 or 1160 seconds.

Today, I explain everything you can do with blocks in a Minecraft: Bedrock Edition resource pack. Enjoy!

Variations Array: { “variations”: [ { “path”: “textures/image1”, “weight”: 1 }, { “path”: “textures/image2”, “weight”: 1 } ] }

This video is monstrously large, so to help you find the information you’re looking for, I added topic timestamps below.

Timestamps: 0:00 – Intro 0:20 – terrain_texture.json 1:05 – Block IDs and Data Values 1:58 – Swapping Textures 3:20 – blocks.json 5:21 – Carried Textures 5:51 – Random Texture Rotation (Isotropic) 6:33 – In-Depth Example 9:54 – Random Texture Variations 11:39 – Color Overlays 13:56 – flipbook_textures.json 14:14 – Animating Data Values 14:57 – Animating Random Texture Variations 15:37 – Replicate Property 16:28 – blocks.json Version 16:56 – Mipmap Levels and Padding 18:02 – Miscellaneous Properties 18:28 – Outro

Playlist: https://www.youtube.com/playlist?list=PLwnviK9sp0sf3XKyLYvav-s9xwEodvJzf

YouTube: https://www.youtube.com/AgentMindStorm Twitter: https://twitter.com/agentms_ Xbox Club: AgentMindStorm Club

Outro Music is Danny by C418: https://youtu.be/X2ajI96FyAk

  • Valkyrae vs. Momoa: Minecraft Movie Set Showdown

    Valkyrae vs. Momoa: Minecraft Movie Set Showdown In the world of Minecraft, a tale unfolds, Valkyrae’s story, bold and cold. Jason Momoa, a star so bright, But his behavior caused quite a fright. On set of the movie, tensions ran high, Valkyrae witnessed, with a sigh. Momoa’s anger, crew members felt, In a moment where emotions dwelt. Valkyrae spoke out, didn’t hold back, Naming Momoa, no need to backtrack. His actions, she did not condone, Creating a toxic work zone. The Minecraft movie, a star-studded show, With Jack Black and more in tow. But controversies swirl around, Fans divided, emotions abound. Despite the challenges, the film… Read More

  • How to Build a Bathtub in Minecraft

    How to Build a Bathtub in Minecraft Exploring the World of Minecraft: Building a Bathtub Are you ready to dive into the creative world of Minecraft and learn how to build a bathtub? In this article, we will explore the exciting possibilities of building in Minecraft and guide you through the process of creating your very own bathtub in the game. Building Your Bathtub in Minecraft Building in Minecraft is a fun and engaging activity that allows players to unleash their creativity. To build a bathtub in Minecraft, you will need to gather the necessary materials such as blocks, water, and any additional decorations you may… Read More

  • Gone: Mob Vote in Minecraft

    Gone: Mob Vote in Minecraft Minecraft Updates: The End of the Mob Vote? Exciting news for Minecraft fans! The popular game has retired the Minecraft Mob Vote and is gearing up for some major changes in future updates. Let’s dive into the details of what’s to come in the Minecraft universe. Retirement of the Mob Vote One of the biggest changes in the Minecraft world is the retirement of the Mob Vote. This event, which allowed players to vote on new mobs to be added to the game, has been a staple of Minecraft updates for some time. While the Mob Vote will be… Read More

  • Drowned Dilemma

    Drowned Dilemma Welcome to Minecraft Infiniverse Season 4! As the new season of Minecraft Infiniverse kicks off, SkyGuyJedi is ready to embark on a fresh adventure in the world of Minecraft. This season promises to be filled with exciting challenges, epic builds, and thrilling survival experiences. Let’s dive into the highlights of the first episode and see what awaits in this traditional Minecraft journey! Episode Highlights: Resource Gathering: The season starts with a focus on collecting essential resources like wood, saplings, and sweet berries to lay the foundation for survival. Exploration: Along the way, SkyGuyJedi encounters various creatures, discovers a ruined… Read More

  • Ultimate Minecraft Mob Transformations

    Ultimate Minecraft Mob Transformations Minecraft Mob Transformations: Unveiling the Secrets of Minecraft Creatures 🌟 Welcome to Villager’s Craft! In this video, we delve into the captivating realm of Minecraft mob transformations. Have you ever pondered under what circumstances a Zombie Villager can revert to a regular Villager or how other mobs evolve in the game? 🤔 From morph mods to in-game transformations, we’re exploring all the ways Minecraft creatures can undergo changes. Exploring Minecraft 1.21 and Beyond 🚀 In this video, we’re immersing ourselves in the world of Minecraft 1.21! We’re delving into everything from constructing the ultimate Iron Golem Farm 🛠️ to… Read More

  • Zeddy’s Wild Minecraft Cart Showcase

    Zeddy's Wild Minecraft Cart Showcase Minecraft Mod Showcase: NiftyCarts & AstikorCarts Redux Exploring the vast world of Minecraft just got more exciting with the introduction of the NiftyCarts and AstikorCarts Redux mods. These mods bring a whole new level of functionality and creativity to the game, allowing players to enhance their gameplay experience in unique ways. Features of NiftyCarts Mod: The NiftyCarts mod introduces a variety of new carts that players can use to transport items, animals, and more. From the versatile Handcart to the sturdy Supply Cart, each cart serves a specific purpose and adds a new dimension to transportation in Minecraft. Key… Read More

  • Launcher Drama: Minecraft’s Truth Bomb!

    Launcher Drama: Minecraft's Truth Bomb! In the world of Minecraft, launchers are key, To access the game, they set you free. But controversy arose, causing a stir, Let’s clear the confusion, let’s make it all blur. There are many launchers, each with their own flair, From Prism to MultiMC, they all have a share. Licensing and security, important to note, Respecting player’s choices, that’s what we promote. Clickbait and alternatives, let’s have a chat, Making the community more welcoming, how about that? Join the conversation, let your voice be heard, In the world of Minecraft, let’s spread the word. Discord, Telegram, and Matrix too,… Read More

  • Netherbound: My Own Steed! | Minecraft Ch. 6

    Netherbound: My Own Steed! | Minecraft Ch. 6 Exploring the Nether and Taming a Steed in Minecraft Chapter 6 On the latest Minecraft stream by TheLeemThatStreams, viewers were treated to an exciting adventure in the Nether and the unexpected joy of taming a steed. Let’s dive into the highlights of this thrilling chapter! Into the Nether The stream began with Theo bravely venturing into the Nether, a dangerous dimension filled with lava, hostile mobs, and treacherous terrain. Armed with determination and a trusty pickaxe, Theo navigated through the fiery landscape, uncovering hidden treasures and battling formidable foes along the way. Key Point: The Nether is a challenging… Read More

  • Discover the Ultimate Minecraft Experience on Minewind Server

    Discover the Ultimate Minecraft Experience on Minewind Server Welcome to NewsMinecraft.com, your go-to source for all things Minecraft! Today, we stumbled upon a fascinating YouTube video showcasing a working Minecraft item duplication glitch with over 2.6 million downloads. While the video itself is quite intriguing, it got us thinking – why not take your Minecraft experience to the next level by joining a dynamic and exciting Minecraft server like Minewind? Minewind offers a unique and immersive gameplay experience that will keep you hooked for hours on end. With a thriving community of players from all around the world, you’ll never run out of adventures to embark on… Read More

  • Purple Star Portal Prank in Minecraft

    Purple Star Portal Prank in Minecraft Minecraft’s Purple Star Portal: A Colorful Adventure Awaits! Are you ready to embark on a vibrant and enchanting journey in Minecraft? The Purple Star Portal, also known as the Rainbow Bubblegem, offers players a unique and colorful experience like no other. Let’s dive into the magical world of Minecraft and discover the wonders that await beyond the Purple Star Portal! Exploring the Purple Star Portal As you step through the Purple Star Portal, you will be greeted by a mesmerizing landscape filled with hues of purple, blue, and pink. The vibrant colors and sparkling gems that adorn this portal… Read More

  • Minecraft Memes – Sip on that Minecraft tea

    Minecraft Memes - Sip on that Minecraft teaWell, I guess S’beve really knows how to mine for those upvotes! Read More

  • Frosty Facts: Minecraft’s Hidden Show, Unearthed Secrets That Even Pros Don’t Know

    Frosty Facts: Minecraft's Hidden Show, Unearthed Secrets That Even Pros Don't Know In the world of Minecraft, where blocks reign supreme, Cube Xuan brings laughter, like a joyful dream. With funny animations and songs to sing, Each video a gem, like a shining ring. From classroom antics to songs so sweet, Cube Xuan’s channel is a joyful treat. With updates and facts that fans adore, Minecraft knowledge like never before. So leap into the verse, with rhymes so fine, Cube Xuan’s channel, a true gold mine. For gaming fun and laughter galore, Subscribe today, and come back for more! Read More

  • Oh no why | Minecraft troll face meme | #hotmeme

    Oh no why | Minecraft troll face meme | #hotmeme When you accidentally mine straight down and fall into a pit of lava, but your character’s face is just like “Oh no why” in the most nonchalant way possible. Classic Minecraft troll face moment! Read More

  • Diamonds Galore: Minecraft PE Survival Pt. 2

    Diamonds Galore: Minecraft PE Survival Pt. 2 Exploring the Depths: Diamond Mining in Minecraft PE Survival Series Embark on an exciting journey through the pixelated world of Minecraft PE Survival Series as our intrepid gamers delve deep into the earth in search of the coveted diamonds. In this thrilling episode, they finally strike gold – or rather, diamonds – in their quest for rare resources. Unearthing Treasures As the players navigate the challenges of survival mode, they encounter various obstacles and adversaries along the way. From crafting tools to building shelters, every step brings them closer to their ultimate goal: finding diamonds. With perseverance and skill,… Read More

  • Sneak Peek: Minecraft 2024 Update!

    Sneak Peek: Minecraft 2024 Update! Minecraft LIVE 2024 Leaked | New Biome & Mob! Welcome to the exciting world of Minecraft, where creativity knows no bounds! In this latest update, players are in for a treat with the leaked information about the upcoming Minecraft LIVE 2024 event, featuring a new biome and mob. Let’s dive into the details and explore what’s in store for all the Minecraft enthusiasts out there! New Biome Unveiled: The Enchanted Grove One of the most anticipated additions to Minecraft is the Enchanted Grove biome. This mystical and magical biome is filled with vibrant colors, sparkling flora, and unique creatures…. Read More

  • Insane Minecraft Cobblemon with JoobiestNerd

    Insane Minecraft Cobblemon with JoobiestNerdVideo Information This video, titled ‘mmmmmm funny creechers |Minecraft Cobblemon| August 1, 2024 Stream’, was uploaded by JoobiestNerd on 2024-08-02 14:29:37. It has garnered 26 views and 6 likes. The duration of the video is 03:01:36 or 10896 seconds. Stream rules: – Be nice! – Respect people’s orientations and pronouns – Have fun! Discord link: https://discord.gg/J3bVCeqQcw Read More

  • Building Underground Bunker with Giant Worms in Minecraft

    Building Underground Bunker with Giant Worms in MinecraftVideo Information This video, titled ‘How Mikey and JJ BUILD BUNKER from GIANT WORMS ? Underground Kingdom! – Minecraft (Maizen)’, was uploaded by JJ MAIZEN & Mikey on 2024-04-06 17:30:01. It has garnered 24117 views and 195 likes. The duration of the video is 01:03:08 or 3788 seconds. How Mikey and JJ BUILD BUNKER from GIANT WORMS ? Underground Kingdom! – Minecraft (Maizen) This is not an official Maizen channel, we make fan videos with Mikey and JJ. Our channel is exclusively for fans of Maizen. We’re not trying to impersonate his personality, we just want to add new and… Read More

  • DAY 1 HARDCORE MINECRAFT MADNESS

    DAY 1 HARDCORE MINECRAFT MADNESSVideo Information This video, titled ‘Some highlights of day 1 Hardcore #minecraft’, was uploaded by stan616 on 2024-09-25 15:56:27. It has garnered 63791 views and 7071 likes. The duration of the video is 00:01:00 or 60 seconds. https://www.twitch.tv/stan616 Read More

  • EPIC Tsunami House Build Challenge – Minecraft NOOB vs PRO!

    EPIC Tsunami House Build Challenge - Minecraft NOOB vs PRO!Video Information This video, titled ‘Minecraft NOOB vs PRO: TSUNAMI HOUSE BUILD CHALLENGE’, was uploaded by Wetz on 2024-04-11 08:00:32. It has garnered 104556 views and 2165 likes. The duration of the video is 00:22:59 or 1379 seconds. Check out n’yo mga kaibigan ko: Raizu: @RaizuMinecraft Lyn: @KLlyn. Inspired by Eider, Maizen, Aphmau, Nico, Cash, Omzcool Minecraft Video, Challenges, Pranks and Building! Read More

  • Chill Tushar Fan Club – Haunted School Trip 😱 || Part 1 || Minecraft Horror Story

    Chill Tushar Fan Club - Haunted School Trip 😱 || Part 1 || Minecraft Horror StoryVideo Information This video, titled ‘MINECRAFT HAUNTED SCHOOL TRIP 😨 || PART-1 || MINECRAFT HORROR STORY IN HINDI || VIDEO BY @tusharrr1’, was uploaded by CHILL TUSHAR Fan Club on 2024-07-13 16:50:59. It has garnered 2 views and likes. The duration of the video is 00:08:58 or 538 seconds. its a horror minecraft roleplay in hindi video uploaded by CHILL TUSHAR Fan Club its a horror minecraft roleplay in hindi video created by Chill Tushar #minecraft #roleplay #gaming . . . minecraft roleplay, minecraft, gaming, minecraft horror, minecraft scary, minecraft haunted, minecraft story, conjuring, minecraft dark, minecraft secret, minecraft smp,… Read More

  • WARNING: SUBSCRIBES TO THIS CHANNEL = DEATH!

    WARNING: SUBSCRIBES TO THIS CHANNEL = DEATH!Video Information This video, titled ‘🔴 SUB = DEATH – Minecraft Hexxit Mod’, was uploaded by Java on 2024-08-27 22:35:42. It has garnered 8597 views and 260 likes. The duration of the video is 01:07:01 or 4021 seconds. #minecraft #hypixel #Bedwars #shorts Read More

  • Unleash Dan’s Wild Power – Charity Streamer!

    Unleash Dan's Wild Power - Charity Streamer!Video Information This video, titled ‘I need more powah!! | FamilyFriendly | !extralife Charity Streamer’, was uploaded by WildWestDan on 2024-06-22 02:14:51. It has garnered 6 views and 0 likes. The duration of the video is 03:08:56 or 11336 seconds. ————————————————– About Me: Howdy! I am a community-first family friendly charity creator who loves Minecraft, Disney, Dungeons & Dragons, and Nintendo! My current super long-term project for my YouTube Let’s Play and Twitch streams is creating the entirety of Walt Disney World’s Magic Kingdom, as accurately as possible, in vanilla Survival Minecraft. I have been raising money for Boston Children’s… Read More

  • INSANE! Opening 50 BlockBande Boxes on Craftmir

    INSANE! Opening 50 BlockBande Boxes on CraftmirVideo Information This video, titled ‘ich ÖFFNE 50 KISTEN auf BlockBande Minecraft’, was uploaded by Craftmir on 2024-05-10 13:00:43. It has garnered 11136 views and 559 likes. The duration of the video is 00:23:33 or 1413 seconds. we play on BlockBande.de LIKE & SUBSCRIBE if you want to see more! If you want to play along: https://discord.gg/paulberger ►Main channel: @Amir1107 ►Become a channel member: https://bit.ly/3ykKJ1u ►Twitch: https://www.twitch.tv/1107amir ►Discord: https://discord.gg/aryaFURtkZ ►Instagram: https://www.instagram.com/1107amore/ ►Twitter: https://twitter.com/1107amore?s=20 Production Music courtesy of Epidemic Sound: http://www.epidemicsound.com Read More

  • Becoming Herobrine Prank on Friend | Minecraft #shorts

    Becoming Herobrine Prank on Friend | Minecraft #shortsVideo Information This video, titled ‘I Trolled My Friend And He Become Herobrine #minecraft #shorts’, was uploaded by I Am Alpha on 2024-06-14 12:41:00. It has garnered 12226 views and likes. The duration of the video is 00:00:53 or 53 seconds. Hello Guyz I AM Gaming Content Creator Please Hit Subscribe Tags Ignore minecraft shorts,minecraft,minecraft animation,shorts,shorts minecraft,minecraft but,minecraft memes,minecraft funny,minecraft tiktok,minecraft short,minecraft sad story,funny minecraft shorts,minecraft meme shorts,minecraft types shorts,minecraft challenges,funny minecraft,help shorts,minecraft parody,youtube shorts,minecraft pe,help herobrine shorts,minecraft meme,alan becker shorts,minecraft life story,old minecraft shorts Read More

  • Phoenix-Network

    Phoenix-NetworkPhoenix Network Prison | Skyblock | MiniGames| BoxPvP Phoenix Network focuses mainly on custom and unique experiences. Join today to see what the hype is all about! IP: Phoenix-Network.Net Phoenix-network.net Read More

  • KrustyKraft SMP Realm – Realms, 18+, Whitelist

    Welcome to KrustyKraft SMP! If you’re 18+ with a functioning microphone and past builds to showcase, we invite you to join our Minecraft Bedrock Community. Our realm is active, friendly, and inclusive with Vanilla gameplay and quality of life addons. We use Discord for communication and hold events and projects to keep things exciting. Apply to be part of our community today! DM me for the Discord Link! 🙂 Read More

  • Minecraft Memes – “Blocky Boss: Movie Character Codebreak”

    Why did the creeper go to therapy? Because it had a lot of explosive emotions to work through! Read More

  • Steve’s Sticky Situation: A Web of Escape in Minecraft

    Steve's Sticky Situation: A Web of Escape in Minecraft In the depths of Minecraft, Steve finds himself trapped, In a spider’s web, his fate is now mapped. Can he escape, with skill and might? Or will he be stuck, in the web’s tight plight? The spiders crawl, with eyes so bright, Their hunger for Steve, a chilling sight. But our hero is brave, he won’t give in, With a swift escape, he’ll surely win. Watch as he jumps, and dodges with grace, Navigating the web, in this thrilling race. The tension mounts, as time ticks by, Will Steve break free, or will he sigh? Stay tuned for more,… Read More

  • Minecraft TNT Disaster v267: Explosive Comedy!

    Minecraft TNT Disaster v267: Explosive Comedy! When you accidentally blow up your entire Minecraft world with TNT and suddenly realize maybe you should have stuck to building houses instead of conducting explosive experiments. #minecraftfail #oops Read More

  • 25 Epic Minecraft Mountain Seeds!

    25 Epic Minecraft Mountain Seeds! Exploring the Top 25 Best New Minecraft Mountain Seeds Embark on a thrilling adventure in the world of Minecraft with the top 25 best new mountain seeds for version 1.21. These seeds offer breathtaking landscapes, challenging terrains, and endless possibilities for survival, exploration, and base building. Whether you’re a seasoned player or a newcomer to the game, these seeds will surely captivate your imagination and keep you entertained for hours on end. Discovering the Mountain Seeds From the towering cliffs to the lush valleys, each seed on this list promises a unique and exciting experience. Here are some highlights… Read More

  • Unbelievable ROBLOX SHREDDER by OmzCrew!

    Unbelievable ROBLOX SHREDDER by OmzCrew!Video Information This video, titled ‘ROBLOX SHREDDER!’, was uploaded by OmzCrew on 2024-08-14 01:27:08. It has garnered 189206 views and 2886 likes. The duration of the video is 02:48:33 or 10113 seconds. Today Omz Crystal Luke Alexa Roxy Lily and Heather are playing roblox shredder! #roblox #omz #minecraft #minecraftmod Read More

  • Sweaky The John Mod: Terrifying Remake

    Sweaky The John Mod: Terrifying RemakeVideo Information This video, titled ‘The John Mod got a HORRIFYING Remake…’, was uploaded by Sweaky on 2024-09-24 01:05:37. It has garnered 2440 views and 94 likes. The duration of the video is 00:12:00 or 720 seconds. Video concept: #minecraft #john #minecrafthorror #cavedweller #manfromthefog #mickeymouse #analoghorror _________________________________________________________________________ JOIN DISORD—- https://discord.gg/3U862CeKnJ SUBSCRIBE OR I TAKE YOUR DOG ╔═╦╗╔╦╗╔═╦═╦╦╦╦╗╔═╗ ║╚╣║║║╚╣╚╣╔╣╔╣║╚╣═╣ ╠╗║╚╝║║╠╗║╚╣║║║║║═╣ ╚═╩══╩═╩═╩═╩╝╚╩═╩═╝ _________________________________________________________________________ who im recording with: @KingArthurYouTube thumbnail made by: ME Mod linked below: https://www.curseforge.com/minecraft/mc-mods/john-awakened _________________________________________________________________________ Check out Viewstats! – https://www.viewstats.com/ follow all of these or i will kick you • tik tok – https://www.tiktok.com/@sweakysneaker • Instagram – https://www.instagram.com/sweakysneaker/ _______________________________________________________________________ #minecraft… Read More

  • EPIC NEW SURVIVAL SMP LIVE!! 😱🔥 #shorts

    EPIC NEW SURVIVAL SMP LIVE!! 😱🔥 #shortsVideo Information This video, titled ‘PLAY NEW SURVIVAL SMP LIVE || MINECRAFT LIVE || @realcoolx #shorts’, was uploaded by CoolX Gaming on 2024-08-21 04:45:56. It has garnered 3867 views and 122 likes. The duration of the video is 02:53:08 or 10388 seconds. #minecraft #minecraftserver #buildsmp #shorts #shortslive #shortsfeed #subscribe #coolxgaming #realcoolx #Minecraft #minecraftbut #minecraftshorts #shorts Play Minecraft with ME and be IN VIDEOS! 😝 Just click the ‘JOIN’ button here ▶ 🎮 My Minecraft Server Address: – paid1.hostingkarle.com:25573 You can join this server on Bedrock Edition (Phones, Consoles and Tablets) and Java Edition (PC and Mac) 📷 Instagram:https://instagram.com/coolx_gaming_?i… 🎮 Discord… Read More

  • Outrageous BMX Bedfight With My Bro!

    Outrageous BMX Bedfight With My Bro!Video Information This video, titled ‘Epic Bedfight With My Brother’, was uploaded by BMX Rowdy Gaming on 2024-04-21 11:00:27. It has garnered 13 views and 2 likes. The duration of the video is 00:00:46 or 46 seconds. https://fakepixel.fun/ #shorts #minecraft #bmxrowdy #trending #trendingshorts #trendingvideo #video . . . . . Links 🔗🔗🖇:- . . . . . Discord link:- https://discord.gg/nRfeZtBYZX . . . . . Follow on Instagram:- https://www.instagram.com/bmxrowdy_gaming/ . . . . . Subscribe The Channel and like The video plz.😘😘🥰😍🙂🙃 Title ;- Minecraft Trap Hacks That Will Blow Your Mind in Seconds #shorts #minecraft Minecraft Build Hacks That… Read More

  • Insane PvP – Backwards Keyboard Challenge! #shorts #minecraft

    Insane PvP - Backwards Keyboard Challenge! #shorts #minecraftVideo Information This video, titled ‘PvPing With A BACKWARDS KEYBOARD on PvP Legacy! #shorts #minecraft #pvplegacy’, was uploaded by Proficy on 2024-04-25 09:56:39. It has garnered 519 views and 10 likes. The duration of the video is 00:00:43 or 43 seconds. i had to change my keybinds for this… I STREAM ALMOST DAILY ON TWITCH: https://www.twitch.tv/proficy Discord (with mods and texutre pack): https://discord.gg/vDvR89fuFw #shorts #short minecraft pvp,minecraft,minecraft hardcore,pvp,minecraft shorts,minecraft but,minecraft pvp tips,#minecraft,minecraft challenge,minecraft mod,minecraft funny,minecraft manhunt,minecraft pvp guide,minecraft 1.9 pvp,minecraft smp,crystal pvp,how to pvp in minecraft,minecraft crystal pvp,camman18 minecraft,minecraft speedrun,minecraft speedrunner,minecraft but challenge,minecraft 1.19,minecraft update,minecraft but i cant touch grass… Read More

  • REAL Scary Minecraft Experiments

    REAL Scary Minecraft ExperimentsVideo Information This video, titled ‘Testing Scary Minecraft Experiments That Are Actually Real’, was uploaded by EYstreem on 2024-08-28 02:00:16. It has garnered 1342675 views and 21978 likes. The duration of the video is 00:21:51 or 1311 seconds. Uncovering TERRIFYING Minecraft Mysteries that are actually real including the WHITE ENDERMAN and WHITE ROSE… Play Minecraft with ME and be IN VIDEOS! 😝 Just click the ‘JOIN’ button here ▶ https://www.youtube.com/channel/UC-g_O9HWb5B0rVDG1hLd5Hw/join 👕 Buy EYmerch: https://eystreem.store/ 🎮 My Minecraft Server Address: play.eyserver.com You can join this server on Bedrock Edition (Phones, Consoles and Tablets) and Java Edition (PC and Mac) ❤️ Tik… Read More

  • Surviving Deadly Ocean: PLAZA vs. SHARKS… #minecraft

    Surviving Deadly Ocean: PLAZA vs. SHARKS... #minecraftVideo Information This video, titled ‘Escaping an Ocean Full of DEATH… #minecraft’, was uploaded by Plaza on 2024-01-08 14:00:40. It has garnered 996184 views and 30352 likes. The duration of the video is 00:01:00 or 60 seconds. Plaza does another Minecraft challenge, a Minecraft, But challenge, but not Minecraft, But You Can’t Touch Grass, Minecraft But You Can’t Touch The Color Blue, Minecraft, But You Can’t Touch Sand, Minecraft But You Can’t Touch The Color Green, or any of his other Minecraft 1.19 challenges in 2023! Today Plaza plays not Minecraft, But Water Rises or Minecraft, But Lava Rises, Minecraft… Read More

  • Experience the Ultimate Minecraft Shovel Skins with Nova Gaming!

    Experience the Ultimate Minecraft Shovel Skins with Nova Gaming!Video Information This video, titled ‘Minecraft”Shovel Skins”#imaginedragons #song #artist #minecraft #viral #herobrine’, was uploaded by NOVA GAMING on 2024-08-13 01:30:31. It has garnered 14514 views and 269 likes. The duration of the video is 00:00:11 or 11 seconds. Minecraft”Shovel Skins”#imaginedragons #song #artist #minecraft #viral #herobrine #herobrine#minecraft #vs #smp mrbeast vs herobrine whow will win #skin #morphe #viral #steve #Minecraft #MrBeast #Herobrine #Gaming #GamerLife #VirtualBattle #creativestrategy #CommunitySupport #EpicClash #PixelatedWorld #OnlineGaming #BuildBattle #LegendVsReality Minecraft showdown MrBeast vs Herobrine Gaming legends clash Creative strategy Community-driven gameplay Minecraft battle Virtual world conflict Epic gaming duel Supernatural powers Gaming mythology Strategy and innovation Minecraft creativit Read More

  • Minecraft’s Mind-Blowing New Update – Watch Now!

    Minecraft's Mind-Blowing New Update - Watch Now!Video Information This video, titled ‘Minecraft’s Next Update Is Already Full of New Features’, was uploaded by wattles on 2024-06-18 17:57:40. It has garnered 108661 views and 3915 likes. The duration of the video is 00:14:08 or 848 seconds. Minecraft 1.21.1 and Minecraft 1.21.10 are already getting loaded up with new changes to Minecraft Tricky Trials and more! Today we take a look at the new minecraft updates that have (mostly) happened after the release of 1.21! 📷 instagram https://www.instagram.com/stonegalerie/ 💗 patreon https://www.patreon.com/wattles 🐤 twitter https://twitter.com/itiswattles 📖 reddit https://www.reddit.com/r/wattles/ 👕 my shop https://shop-wattles.creator-spring.com/ ☺ SOME PLAYLISTS ☺ Minecraft Guide https://www.youtube.com/playlist?list=PL0oJ2_Q2jPrdt6JFbZtTi8H_XwgYXVRfI… Read More

  • Greystone MS Prison

    Greystone MS Prison* Greystone MSP * – Custom enchants,prison,no op classic prison server, community, voting, parkour, dungeons, custom mobs join Come join and give it a go were trying to build a big community here! 46.105.76.60:26935 Read More