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

  • Uncovering Minecraft’s Origins

    Uncovering Minecraft's Origins The Hunt for the First Minecraft Video Introduction 15 years ago, Evil-Ville created the first Minecraft video, titled “Minecraft Castle.” However, this historic video has been lost over time. Now, with the help of the Minecraft community, there is a chance to recover this piece of gaming history. What Happened? The first Minecraft video, “Minecraft Castle,” holds significant importance in the gaming world. It showcased the creativity and possibilities within the game, inspiring countless players to embark on their own Minecraft adventures. Unfortunately, the original video has been lost, leaving only memories and a few scattered screenshots. The Hunt… Read More

  • Block Shock: Giant Mob Invades, Mods Amaze! (Ep.24)

    Block Shock: Giant Mob Invades, Mods Amaze! (Ep.24) In my Minecraft world, a giant mob appeared, With horror mods installed, my heart was feared. The Dwellers, so terrifying, lurking in the night, I faced them bravely, ready to fight. The One Who Watches, The Man from the Fog, Nightmare.jar, SCPs, all in the log. Each step I took, filled with dread, But I pressed on, no fear in my head. The map of One Block, a challenge so grand, Versions 1.16 to 1.21, across the land. Twitch and Tiktok, my social links, Sharing my adventures, with horror in sync. So join me in Minecraft, with mods so… Read More

  • Creepy Crawlies in ONE BLOCK – Minecraft Terror Mods (Ep.25)

    Creepy Crawlies in ONE BLOCK - Minecraft Terror Mods (Ep.25) In the world of Minecraft, terror mods abound, Dwellers lurking, waiting to astound. The One Who Watches, The Man from the Fog, Nightmare.jar, horrors that make you log. One Block map, a challenge so grand, Versions aplenty, at your command. Twitch and Tiktok, where you share your tale, Twitter and Instagram, where fans set sail. Music of the outro, a perfect blend, To this horror mod series, there’s no end. Minecraft but with terror mods, a frightful spree, Dwellers and monsters, for all to see. So leap into the verse, with rhymes so bright, Crafting Minecraft news, with all… Read More

  • Stormy Weather: Minecraft Unravels Climate Change Chaos

    Stormy Weather: Minecraft Unravels Climate Change Chaos Welcome, welcome to Minecraft Explains #10, Where we dive into climate change, once again. Back-to-back hurricanes, a sight to behold, Is the Greenhouse Effect making them bold? In this video, we’ll explore the link, Between climate change and disasters, don’t blink. The Greenhouse Effect, a warming trend, Intensifying natural hazards, around the bend. Join us in Minecraft, as we build and learn, The three pillars of sustainability, it’s our turn. Educational and fun, that’s our aim, To spread awareness, and ignite the flame. So come along, let’s dive right in, To the world of Minecraft, where we begin. With… Read More

  • Insane Minecraft CPvP Shenanigans!

    Insane Minecraft CPvP Shenanigans! Exploring the Exciting World of Minecraft CPVP Are you ready to dive into the action-packed world of Minecraft CPVP? Get ready for an adrenaline-pumping experience as players battle it out in intense combat scenarios. In this article, we will explore the thrilling gameplay of CPVP and the excitement that comes with it. The Thrill of CPVP CPVP, short for Competitive Player Versus Player, is a popular game mode in Minecraft that pits players against each other in intense combat situations. In this fast-paced environment, quick reflexes, strategic thinking, and expert timing are key to emerging victorious. Players must utilize… Read More

  • Parkour prowess | Level 6 Walkthrough | Minecraft Mayhem

    Parkour prowess | Level 6 Walkthrough | Minecraft Mayhem In Minecraft world, where blocks align, Parkour skills, level 6, let’s define. Jump and leap, with precision and grace, Navigate obstacles, at a steady pace. Subscribe for more, don’t miss a beat, Support the channel, with a like, it’s neat. Awkward situations, funny moments to share, In the world of Minecraft, we dare. Ice and fire, mods to explore, Survival adventure, let’s soar. Walkthroughs and challenges, we embrace, In this gaming world, find your place. So join us now, in this Minecraft delight, With rhymes and fun, we take flight. Parkour skills, level 6, in sight, Let’s conquer together,… Read More

  • Crafting Chaos: Minecraft 2025 – Blockbuster Adventure!

    Crafting Chaos: Minecraft 2025 - Blockbuster Adventure! In the world of Minecraft, a movie’s on the rise, With pixelated wonders and real-life ties. The trailer’s out, with visuals so grand, Epic adventures in the palm of your hand. Join us at Data Enigma, breaking it down, The storyline, the hype, the talk of the town. Will this movie soar, or fall flat on its face? Let’s dive deep into this pixelated space. Like, comment, subscribe, for more movie delights, Trailer breakdowns, reviews, and cinematic sights. Minecraft Movie 2025, a tale to be told, In rhymes we’ll share, as the story unfolds. Read More

  • Minecraft Chaos with MoenD: The Final Showdown

    Minecraft Chaos with MoenD: The Final Showdown The Mystery Unveiled: Exploring Minecraft Random Layer One Chunk with @MoenD Unraveling the Golden Ticket Mystery Delve into the depths of Minecraft Random Layer One Chunk with @MoenD as they uncover the enigmatic Golden Ticket. What secrets lie within this mysterious item? Join the adventure as they navigate through the intricate world of Minecraft to unravel the hidden truths behind the Golden Ticket. Discovering the World of Minecraft Embark on a journey to explore the vast and diverse world of Minecraft with @MoenD. From towering mountains to lush forests, the Minecraft universe is filled with endless possibilities and adventures… Read More

  • Top 5 Texture Packs for Minecraft 1.21.1

    Top 5 Texture Packs for Minecraft 1.21.1 Exploring the Best Texture Packs for Minecraft 1.21.1 When it comes to enhancing the visual experience of Minecraft, texture packs play a crucial role. They can completely transform the look and feel of the game, adding a new layer of creativity and immersion for players. Here, we delve into the top 5 texture packs that are making waves in the Minecraft community. 1. Just_the_skye’s Texture Pack Just_the_skye has curated a unique texture pack that brings a fresh perspective to Minecraft. With vibrant colors, detailed textures, and a touch of whimsy, this pack is a favorite among players looking to… Read More

  • TNT Chaos Challenge

    TNT Chaos Challenge The Exciting World of Minecraft: Lucky TNT Challenge! Embark on a thrilling adventure in the world of Minecraft with the Lucky TNT Challenge! In a recent video, our host and special guest, Vixtel, dive into the action-packed challenge that promises explosive fun and unexpected surprises. What is the Lucky TNT Challenge? The Lucky TNT Challenge introduces a new twist to the traditional Minecraft gameplay by incorporating lucky blocks that contain TNT. Players must navigate through the world, breaking these blocks and dealing with the explosive consequences. It’s a test of skill, luck, and quick thinking as they strategize their… Read More

  • Boom! Minecraft’s TNT Mod: Explosive Fun

    Boom! Minecraft's TNT Mod: Explosive Fun In the world of Minecraft, TNT reigns supreme, Explosions so grand, like a wild dream. CoolMan here to show you the best TNT mod, Watch as the blocks explode, like a lightning rod. Subscribe and like, don’t forget the bell, To stay updated on the videos I tell. Join Discord, TikTok, and follow the link, For more Minecraft fun, let’s all sync. So come along, let’s dive into the game, With TNT explosions, never the same. Minecraft mods, a world to explore, With CoolMan as your guide, let’s soar. Read More

  • Minecraft Meme: Creeper Hotline Bling

    Minecraft Meme: Creeper Hotline Bling “Why did the creeper go to therapy? Because it had too much TNTsion!” Read More

  • Unveil the Mystery of Redstone in Minecraft! 🤯 | Live Building with LoveShirgi

    Unveil the Mystery of Redstone in Minecraft! 🤯 | Live Building with LoveShirgiVideo Information This video, titled ‘what is redstone… | MINECRAFT BUILDING LIVE’, was uploaded by LoveShirgi on 2024-11-02 06:01:30. It has garnered 249 views and 11 likes. The duration of the video is 03:02:34 or 10954 seconds. Shirgi plays Minecraft. TWITCH ➤ https://www.twitch.tv/LoveShirgi DISCORD ➤ https://www.bit.ly/ShirgiDiscord TIPS ➤ https://streamlabs.com/loveshirgi/tip MUSIC CREDITS “Collectae Caesare” ➤ https://docs.google.com/document/d/1OOWNDjMcxvWp0P1kaTZx_SKPGA3Z4xNUJJEIL_-HQSM/edit?usp=sharing “Gold under the Night Lights” ➤ https://docs.google.com/document/d/1P52FY-69rytu9wNr61N6G0p9oKamclZioOQ972SsepE/edit?usp=sharing #Minecraft #MinecraftBuilding #VTuber #EnVTuber Read More

  • The Ultimate Betrayal in Minecraft Season 2

    The Ultimate Betrayal in Minecraft Season 2Video Information This video, titled ‘Minecraft season 2 [Part 9]’, was uploaded by KIMEXI on 2024-10-27 20:05:25. It has garnered 28 views and 3 likes. The duration of the video is 02:24:25 or 8665 seconds. What’s up youtube, my name is Kimexi and I love video games❤️🎮 I hope you stick around come chill with me while I panic my way through some scary games 😆 Consider subscribing if you’re new and say hi! I love interacting with people. So don’t be shy. With all that being said I hope you have a great day and I will see you… Read More

  • Uncover Aximo’s Shocking Basement Secrets!! #minecraft

    Uncover Aximo's Shocking Basement Secrets!! #minecraftVideo Information This video, titled ‘Minecraft funny moments part 3 #minecraft #shorts’, was uploaded by Aximo’s basement on 2024-05-10 10:30:26. It has garnered 462 views and 21 likes. The duration of the video is 00:00:31 or 31 seconds. About me:- I am Aximo the owner of this channel and your family-friendly host and dost, I am a gamer from India who loves to do things like gaming, streaming, etc., and mainly entertaining others so I choose YouTube as an excellent platform to build my audience and to entertain them. Tags ignore #aximo #mraximo #minecraft #minecraftshorts #minecraftpe Read More

  • Return of the Slime in Uforo Survival – Ep 1

    Return of the Slime in Uforo Survival - Ep 1Video Information This video, titled ‘minecraft survival -ep 1- (the slime is back)’, was uploaded by Uforo on 2024-02-17 23:54:45. It has garnered views and [vid_likes] likes. The duration of the video is or seconds. https://www.deviantart.com/doritodemon2/art/Slime-gif-564996605 (—– check him out he made the slime graphic IM BACKKKKK! Read More

  • EcoSMP – Lost Treasures Found | Monster Marauder 2

    EcoSMP - Lost Treasures Found | Monster Marauder 2Video Information This video, titled ‘Millions In Valuables Have Gone Missing | Monster Marauder Part 2’, was uploaded by EcoSMP on 2024-05-22 23:14:49. It has garnered 523 views and 17 likes. The duration of the video is 00:00:49 or 49 seconds. Breaking news from the town of Tolfaldir on the EcoSMP Minecraft Towny survival server. Last night, we reported on a mysterious monster-like creature spotted in Tolfaldir. This creature, described as a dark shadowy figure, was last seen entering the sewers. Throughout the night, we received more information from EcoSMP officials. They informed us that a few days ago, a… Read More

  • JJ & Mikey FIND SECRET PORTAL in GIRL! Minecraft Maizen

    JJ & Mikey FIND SECRET PORTAL in GIRL! Minecraft MaizenVideo Information This video, titled ‘How JJ and Mikey Found SECRET PORTAL inside GIRL WOMAN!? JJ and MIKEY inside WOMAN Minecraft Maizen’, was uploaded by Mizen Star on 2024-09-24 06:42:05. It has garnered 2571 views and 29 likes. The duration of the video is 00:59:56 or 3596 seconds. JJ Use DRAWING MOD for PRANK GIRL WOMAN SWIMSUIT and Mikey in Minecraft Maizen! Mizen Parody This is not an official Maizen channel, we make fan videos with JJ and Mikey. Our channel is exclusively for fans of Maizen. We are not trying to impersonate his personality, we just want to add… Read More

  • “INSANE Luck in Pokemon Minecraft!!!” #cobblemon

    "INSANE Luck in Pokemon Minecraft!!!" #cobblemonVideo Information This video, titled ‘I’m So Lucky!!! #pokemon #minecraft #cobblemon #twitch #ttv #gaming #funny’, was uploaded by FocusSh0ck on 2024-07-12 16:00:43. It has garnered 420 views and 9 likes. The duration of the video is 00:00:49 or 49 seconds. Links to Follow: Twitch – Catch me Live at https://www.twitch.tv/focussh0ck Catch Full Livestream VODs at https://www.youtube.com/@FocusSh0ckVODs TikTok – https://www.tiktok.com/@focus_on_twitch X – https://x.com/Focus_Sh0ck Insta – https://www.instagram.com/focus_sh0ck Read More

  • ULTIMATE Minecraft Hardcore ITEM Collection! (PT. 2)

    ULTIMATE Minecraft Hardcore ITEM Collection! (PT. 2)Video Information This video, titled ‘Collecting EVERY Item in Minecraft Hardcore! (PART 2)’, was uploaded by Bizzy on 2024-08-28 04:54:25. It has garnered 505 views and 29 likes. The duration of the video is 01:45:14 or 6314 seconds. I am finally building a storage system in my 500 day hardcore world! In order to do so, I need every item in the game. Join this channel to get access to perks: https://www.youtube.com/channel/UChggtyl_rk43GBzaUDFfqRw/join Music from Epidemic Sounds Current Subscribers: 1,850 #minecraft #hardcore #challenge Read More

  • Unbelievable Boat Clutch: Bestblade 75 – MINECRAFT Music!

    Unbelievable Boat Clutch: Bestblade 75 - MINECRAFT Music!Video Information This video, titled ‘boat clutch #music #animation #cartoon #song #art #minecraft #minecraftgameplay #viral #trending’, was uploaded by Bestblade 75 on 2024-07-11 12:19:14. It has garnered views and [vid_likes] likes. The duration of the video is or seconds. Read More

  • Castle Quest: @KS_PLAYZ_YT’s Secret Bunker Uncovered! #shippudensmp

    Castle Quest: @KS_PLAYZ_YT's Secret Bunker Uncovered! #shippudensmp In the depths of the castle, a secret did lie, @KS_PLAYZ_YT’s bunker, hidden from the eye. Exploring the depths of #shippudensmp, Uncovering mysteries, in the realm of Minecraft. Join us in the adventure, creators unite, Crafting content, in the day and the night. Subscribe to our channels, for more to see, In the world of gaming, where we roam free. Business matters? Contact us with ease, Email us at [email protected], please. Join our Discord, for fun and for play, In the world of Minecraft, where we stay. Read More

  • Minecraft Meme: Spicy Edition

    Minecraft Meme: Spicy Edition Why did the creeper go to therapy? Because it had too much TNTsion! Read More

  • Steve’s Size Surprise in Minecraft!

    Steve's Size Surprise in Minecraft! The Mystery of Steve’s Height in Minecraft One of the most intriguing aspects of Minecraft is the enigmatic character known as Steve. Players often wonder about the height of this iconic figure, but the game itself does not provide a definitive answer. So, how tall is Steve? The Elusive Height of Steve In Minecraft, Steve’s height remains a mystery, as the game does not explicitly state his exact measurements. This lack of information has sparked numerous debates and speculations among players and fans. Theories and Speculations Some players believe that Steve is around 6 feet tall, while others argue… Read More

  • Testing My Luck in Lucky Block Minecraft

    Testing My Luck in Lucky Block Minecraft Exploring the Minecraft Lucky Block Challenge Introduction In the world of Minecraft, players are constantly seeking new challenges to test their skills and luck. One such challenge that has gained popularity is the Lucky Block Only world. In this unique gameplay mode, players rely on luck as they break Lucky Blocks to uncover various surprises and obstacles. Gameplay In the Lucky Block Only world, players face unpredictable outcomes with each block they break. From valuable resources to dangerous mobs, every block presents a new adventure. The element of surprise keeps players on their toes, making each playthrough exciting and… Read More

  • Unexpected Encounter: Searching 4 Dogs in Minecraft!

    Unexpected Encounter: Searching 4 Dogs in Minecraft!Video Information This video, titled ‘Searching For Dogs in Minecraft! – Cozy Survival Stream’, was uploaded by DriftyTwo on 2024-11-13 15:02:27. It has garnered 1159 views and 57 likes. The duration of the video is 02:30:11 or 9011 seconds. In this past livestream we are back in our long term stream world we search for the taiga dogs to bring back to our base. Afterwards we continue working on our village transformation project. Interested in more Drift content? Check out my main channel! ​⁠ @InfiniteDrift Find me here! https://www.twitch.tv/infinitedrift_ https://x.com/InfiniteDrifft https://www.instagram.com/infinitedriftmc Minecraft version 1.21 Shaders: Complementary Shaders Resource Pack: Jerm’s… Read More

  • Terrifying Horror Story Goes Viral

    Terrifying Horror Story Goes ViralVideo Information This video, titled ‘scary and horror story #shorts#viral#scarystories#scary#horrorstories#storytelling#minecraft#storywa’, was uploaded by Pavan Creations on 2024-09-15 01:26:22. It has garnered views and [vid_likes] likes. The duration of the video is or seconds. Read More

  • Unbelievable Hacks for Coffee Mug, Machine & KFC Bucket! #Minecraft

    Unbelievable Hacks for Coffee Mug, Machine & KFC Bucket! #MinecraftVideo Information This video, titled ‘🪣Top 3 Secret Hacks! (Coffee mug, coffee machine, kfc bucket) #minecraft #shorts’, was uploaded by Cubius Shorts on 2024-07-13 05:57:13. It has garnered 45487 views and 2533 likes. The duration of the video is 00:00:41 or 41 seconds. 3 secret build hacks in Minecraft! #redstonebuilds #howtomake #minecraft #minecraftshorts #shorts Read More

  • Unraveling the Secrets of the World – theROXENinc

    Unraveling the Secrets of the World - theROXENincVideo Information This video, titled ‘EXPLORING MORE OF THE WORLD’, was uploaded by theROXENinc on 2024-08-30 03:15:49. It has garnered 83 views and 1 likes. The duration of the video is 00:43:43 or 2623 seconds. Playing Minecraft building stuff. Having fun Read More

  • Ultimate Raid Farm Completion w/ Subscribers! PC Gamer Madness!

    Ultimate Raid Farm Completion w/ Subscribers! PC Gamer Madness!Video Information This video, titled ‘Minecraft-Metrópole-Episodio 195- Terminando a nova farm de Raid (Jogando com inscritos) Server 24/7’, was uploaded by Midi Gamer – PCImbativel on 2024-07-08 13:10:36. It has garnered 19 views and 5 likes. The duration of the video is 01:29:05 or 5345 seconds. k Livepix link: livepix.gg/midipro Video on how to join the server —- https://www.youtube.com/watch?v=CVYQuw4ZjKg texture pack link: https://mtvehicles.nl/resourcepack/ https://www.dropbox.com/s/pq7pfzw5j2c3rsy/pack%201.4.7.zip?dl=1 Sign up. Leave your Like. Activate the notification bell and participate in this Channel playing live with me and our group of more than 1335 players. Server: Lobby Released. Server: Anarchy Released. Live Server – Call… Read More

  • Terrifying LIVE-MINECRAFT Gameplay with the Gaming Ghost

    Terrifying LIVE-MINECRAFT Gameplay with the Gaming GhostVideo Information This video, titled ‘LIVE-MINECRAFT | FIRST GAMEPLAY | LIVE STREAM GAMEPLAY | GAMING GHOST #Shortslive’, was uploaded by Gaming Ghost on 2024-10-23 21:00:36. It has garnered 669 views and 8 likes. The duration of the video is 01:21:41 or 4901 seconds. Read More

  • Moguin survives 100 days in hardcore Minecraft on a raft!

    Moguin survives 100 days in hardcore Minecraft on a raft!Video Information This video, titled ‘100 Days On A RAFT In HARDCORE MINECRAFT [FULL MOVIE]’, was uploaded by Moguin on 2024-09-11 18:00:19. It has garnered 70066 views and 1318 likes. The duration of the video is 02:38:56 or 9536 seconds. This video was inspired (ripped off) from @BlockdownBuilds Blockdown was inspired by @stobblesmc and ‪@WelcominTV WelcominTV was inspired by@ITSPOPPERS and then he was inspired by @Skyes . I love recycling videos 🥰🥰🥰 Social Media: Discord: https://discord.gg/WueYfurEDv Patreon: https://www.patreon.com/Moguin Twitch: https://www.twitch.tv/moguinyt Twitter: https://twitter.com/MoguinYT Tiktok: https://www.tiktok.com/@officialmoguin Music provided by: @lowresbones https://www.youtube.com/watch?v=RoGKcAvlhH0 @epidemic sound https://share.epidemicsound.com/tqbrow @Minecraft @Runescape Modpack: https://www.curseforge.com/minecraft/modpacks/raft-adventure-its-poppers Map: https://www.curseforge.com/minecraft/worlds/raftblock #minecraft #raft… Read More

  • CHAT CONTROLS MY BIRTHDAY – New Minecraft Game with Andre Miles! #minecraft

    CHAT CONTROLS MY BIRTHDAY - New Minecraft Game with Andre Miles! #minecraftVideo Information This video, titled ‘CHAT CONTROLA MEU MINECRAFT no meu ANIVERSÁRIO!!! #minecraft’, was uploaded by Quero jogar um Jogo – com Andre Miles on 2024-10-20 00:39:02. It has garnered 17653 views and 160 likes. The duration of the video is 01:53:16 or 6796 seconds. This challenge is going to be really cool! It will work like this, from time to time (5, 3 minutes or so) @GunRP will ask you what you want to happen… It could be spawning a mob in my face, it could be blowing me up, it could be me teleport… Lots of crazy things!… Read More

  • EPIC Undertale/Minecraft Mashup – Save The World Now!

    EPIC Undertale/Minecraft Mashup - Save The World Now!Video Information This video, titled ‘UNDERTALE – Hopes and Dreams/SAVE The World (Minecraft Noteblock)’, was uploaded by Gnhan Studio on 2024-03-21 20:00:04. It has garnered 300 views and 20 likes. The duration of the video is 00:05:27 or 327 seconds. UNDERTALE – Hopes and Dreams (Minecraft Noteblock) Mashup of 2 different (but thematically similar) tracks of the game. I played “Megalovania”: https://youtu.be/nMcvCCJCZ30 Composed by: Toby Fox (OST:087 & 089) Note: Deltarune is another game made by Toby Fox who also made Undertale If you’re a Minecraft player, be sure to check out this noteblock! It’s been made specifically for Minecraft… Read More

  • Minecraft server kowamc.com

    How to connect and play on this server? You must have the game version 1.21.3 installed. How to check? At startup, the game version will be displayed on the right, at the bottom. If it is a different version, you should change the current profile (left, bottom) and select version 1.21.3 Click the PLAY button, wait for the Minecraft game to load. Choose: Multiplayer Click the button “Direct connect”, or if you want to keep the server in its list, press the button “Add server” In the field “Server address” write: kowamc.com (GL HF) Read More

  • Bro’s Minecraft journey was lit 🔥

    Bro's Minecraft journey was lit 🔥 Bro traveled to the Nether in Minecraft and accidentally brought back a creeper as a souvenir. Now he’s trying to explain to his mom why the house keeps exploding. #minecraftproblems #momisnotimpressed #minecraftmemes Read More

  • Prankster Pastor’s Hilarious History Lessons

    Prankster Pastor's Hilarious History Lessons The Exciting World of Minecraft Minecraft, a popular sandbox game, has captured the hearts of millions of players worldwide. With its endless possibilities and creative freedom, it offers a unique gaming experience like no other. Exploring the Blocky Universe In Minecraft, players are placed in a blocky, 3D world where they can explore, gather resources, build structures, and battle creatures. The game’s open-world concept allows for limitless creativity, making it a favorite among gamers of all ages. Key Features: Building: Players can construct elaborate structures using various types of blocks. Exploration: The world of Minecraft is vast and full… Read More

  • Ultimate Mini Spikes Build

    Ultimate Mini Spikes Build Creating a Mini Spikes Biome in Minecraft Welcome to a frosty adventure in Minecraft! Today, we’re diving into the creation of a mini spikes biome that’s filled with icy charm and surprises. Join us as we transform the snow into a magical wonderland with unique details like ice spikes, snow patches, and a small lake. Let’s explore the steps to bring this wintry scene to life! 1. Starting with Snow & Grass To add variation, some snow blocks were replaced with grass blocks 🌱. This combination creates a natural look in the snowy scene, offering a diverse terrain of… Read More