Adding Multiplayer to Minecraft in Roblox

Video Information

So it’s been nearly three months since I made the last Minecraft and Roblox video in fact many of you thought I gave up on the project and now it may look like I haven’t changed much since the last video but I promise you there’s been a lot of important functionality added and I’m

Gonna go through them one by one just to get you up to speed before we add some new stuff so first of all you can Ma so first of all you can now mine blocks and yes it deletes the objects above them as well and the way this is done is

Using calling so basically what that means actually instead of explaining what it does let me just show you so if I move this chunk you can see that none of the textures that were facing a block are loaded in and only the textures that were facing the air the ones that we can

See were loaded in now also what this does is well there’s no more black lines between blocks and you can also see that there are actually no blocks below these blocks but if I stand over here and mine this block it generates new blocks around it and applies the textures where they

Should be Alpha mind that one that also happens and so on and that’s what texture block calling does we can now mind but you still can’t mine plants because I’m lazy you may have also noticed the trees now the trees have been completely reworked they’re no longer modeled they are all

Generated using code and if I walk here you can see that only parts of them are generated based on what chunk is being loaded in now this took forever to figure out and many things went wrong I mean this is what the first three look like So trees are now a thing And number three is we can now save chunk differences now what’s a chunk difference basically if you mine a block you just created a chunk difference So the terrain is generated on the player’s computer and the terrain is generated based on a seed but the seed is not aware of any differences a player may have applied because it’s all just mathematical Randomness so if you mind a bunch of blocks or let’s say you place a

Bunch of blocks but the placement system is still not here so don’t get too excited but let’s say I mine all these blocks and I walk away now that chunk is despawned but now if we walk back so what the code is going to do is it’s

Gonna generate the terrain and then it’s gonna apply the differences on top of them so as you can see it looks exactly how we left it and this feature will also allow for multiplayer since all these differences are actually saved on the server and number four I created the system

That determines what chunks should be rendered so first of all in the past the shape of the chunks loaded around you used to be a square then we’re loading a bunch of unnecessary chunks in the corner if we pretend that this is the player these are all the chunks that

Used to be generated around the player however in the new system the way it’s done is like this so we’re basically eliminating all the chunks that are over here because well we don’t need to load them because the player can only see the minimum amount if you know what I mean

Like it wouldn’t make sense to render it as a square so that’s number one and number two is I added the priority system as in whatever chunk is closest to the players should be rendered first so the way this works is we get the distance of each chunk is from the

Player and whichever one is the closest in this case it’s this one it’s rendered first and then whatever is the second for this is rendered second and so on so this ensures that the player will never fall off the map because let’s say a chunk is now rendered quick enough and

It’s not there well then we have an issue but in this case that will never be an issue and what this also allows us to do is set crazy high chunk render distances and as you may be able to see it is slowly loading everything up and this system basically just eliminates

All lack spikes because in the past what used to essentially happen is I’d be loading and rendering every single Chunk in the same frame and the way it’s working now is it only renders one chunk for like five frames But there’s no relax bikes and you can play with pretty big render distances and one more thing when the player dies you are spawned back in in a random position oh yeah and don’t worry about downloading it takes a second so when you die what basically happens is the

Game picks out a random render chunk and if there isn’t one it’s just gonna wait until there is and then he’s gonna pick the first land position if you know what I mean so she’s gonna check every single block until it’s air and then it’s gonna

Teleport the player there so you can die as much as you want and you’re gonna be back somewhere around where you die so really most of the stuff I’ve been working on are just optimization and though it would have been pretty boring to record however they are very

Essential to this game I mean as you can see like the game is literally running very smoothly with this pretty big environment just because of all these optimizations but we’ve still got a lot of work left and I want to focus on adding multiplayer to this game which

Essentially just requires me to network everything and now since the chunk differences are stored on the server mining blocks already works for multiplayer however dropped blocks though in fact the dropped blocks are completely broken because I have to to rework the entire systems like for example if we have a drop block over

Here and we mind the block below it it should fall or let’s say we place a block over here then it should get pushed up or wherever the first empty neighbor is and items should also stack so there’s a lot we need to do there and

I think it’s going to be a pretty hard feature to add but we gotta get it done will I get it done in this video I don’t know I’m gonna try my best making a dropped object system is actually way harder than I expected it

To be and the first thing we gotta do is when you mine a block as I’ve said before it’s Gotta fall down so I just mind the block mine another one and it fell down so let me just dig out a little K for us and as you can see it’s

All falling down so there were like three different sort of scenarios we had to consider when mining blocks and the most basic one is if you mine a block let’s say over here and the one below it is mine then it should drop down that one is pretty straightforward the second

One is let’s say we mine this block it should move all the way down instantly it’s gonna be a bit hard to see but if I mind this it went all the way here right away and now I know there’s no animations right now but I’ve designed

The system in a way that will allow me to add animations pretty simply at least I hope so don’t worry about the animations for now I just didn’t want to waste any time on them and another thing that I had to consider is let’s say am I

In the bottom one and then I mine the top one so if I mine the one in the middle then the dropped object that comes out of it plus this one should both go down here and as you can see it did it so I believe those are all the

Three scenarios there are and they’re all working fine and well but now we have another bit of a problem I mean it’s not a problem but I personally want to improve it which is well there’s just too many entities in one space so obviously there’s only like four blocks

Here so it’s not that big of a deal but let’s say you toss in a stack of stones and you’re gonna have 64 individual teeny tiny blocks all with their own textures just take enough space in your memory and you know I’m a new man now I care about optimization when I do

Something I kind of want to perfect it now so logically the next step is going to be to stack the items together and the way that’s gonna work is we check the space and if there’s more than a certain amount then we have to stack them up together and one thing we have

To consider is let’s say there’s 65 individual Stones over here well then we gotta create one stack and then there’s got to be one individual block so the stack is going to be a model and then the block is going to be a single block and I’m gonna have to store all that

Data in tables everything here is done using tables there’s no physics here and I mean this looks already way better than just having a bunch of blocks just floating around and here I am once again I did in fact manage to get the Stacked objects to

Work and for the items to stack well they’ve got to be of the same kind so dirt and stone doesn’t stack obviously we just gotta keep that in mind and now that in mind another block as you can see this is actually a model that I’ve

Created and if I’m on another block it didn’t change the way it looks if you keep mining it’s just gonna look like that and honestly I don’t want it to be just too I feel like it would make more sense if it’s like four like three or

Four so then like if you keep mining it’s just gonna keep adding individual blocks until you reach as I said three or four and then it starts to look like a stacked object but now when I mine a whole bunch of blocks they’re all just stacking and oh wait why are these

Floating oh no anyway so I’ll be right back why is this happening after quite a bit of debugging and reworking certain systems I think everything is I think everything’s operational now so of course when you mine the blocks are gonna stack we know that already so

Let’s just mind this out and then what we’re gonna do is we’re just gonna walk away from the chunk so it deloads and let’s see if it stays the same and I’ll have any blocks floating and as you can see it has unrendered because we can’t

See it over here and if we walk in this direction it should re-render there we go and as far as I can tell I think everything looks right here so now I think the next step should be picking up blocks I honestly don’t even care that much about animating them for now

Because like it it doesn’t look bad in my opinion just having them sitting there but I do think I should make some sort of like dropping animation but you know I’ll save that for the end so this is going to be my multiplayer test and I believe I just got the

Dropped objects to work in multiplayer and Mining also works however I’m still lacking a few things like the mining like particle effects are on the Block but if I break this block right here as you can see the environment around it changes and a block is dropped now if I

Mind the one underneath they all move down see the issue is I literally for some reason cannot move the camera while I have two like clients open but if you can see they’re like all the way at the bottom you can see a stack or if I do it

Over here there we go yeah I don’t know why I didn’t do that okay so look I’m mining everything and it’s updating accordingly okay wait it shouldn’t be displaying these blocks out here because those chunks are now rendered I must fix that but anyways a lot of progress is

Being done so there are a few more things I want to add before I finish this recording and obviously number one is gonna be picking up objects although I may not do this first because I kind of think it’s a bit boring but the other

Thing that I want to do is I want to modify my terrain generation system so that it allows for more crazy terrain like this because at the moment I feel like it’s a bit basic there’s obvious see no Cliffs there’s not even any caves I’m not sure if I’m gonna do caves yet

But the reason it is like this is because I’m using 2D noise and all that does is determine the height of every position of every block but we’re gonna have to use 3D noise rate Cliffs and crazy Terrain I kind of did something that’s very cool with the terrain generation let me just

Show you this just look at this look at this beauty what what how did I make this this looks insane like there’s a whole tunnel on like a bridge connecting landmasses there’s Cliffs and overhangs and and yeah that’s about it I feel like we’re getting closer and closer to the actual

Minecraft terrain it’s still nowhere near as complex but like oh my God like I want to explore this now like the way I used to look before was very generic because the only values I was changing was the y height which is like the height of the surface level and that was

It but if you look over here there is no set surface level because there’s some blocks up here and there’s blocks up here so there’s like two surface levels if you know what I mean so you may be wondering how this is done and basically instead of using 2D purlin noise to

Determine where the surface level should be I’m using 3D noise to determine what should be air and what should be a block and the closer this value gets to the actual space surface level okay I I don’t know if I can even explain this just doesn’t make sense but basically

Math math is beautiful and sometimes confusing so with the way the code works right now I’m actually going to be able to create biome oh my God this is actually beautiful what what am I looking at okay what is going on with that tree so basically what’s happening

Is the first step of the code is to determine where there should be a block and where there should be air and where there should be a block I just set it to Stone and then the second step is well to pick out what biome it should be and

Well of course in this case I only have this singular one I don’t even know what it’s called honestly but then what we do is replace the top surface layers with dirt and grass blocks well obviously this can be changed to whatever we want this could be sand it could be snowy

Grass blocks but I’m Gonna Save biomes for a Future video just because I want to perfect this terrain first of all and I think we’re getting there and of course the dropped blocks still work they’re all stacking over here all nice and beautiful you still can’t pick them

Up though because I’m lazy picking blocks is going to be pretty easy to do you just gotta check the distance that the player is from the Block but I think the important part is optimizing it like if a block is dropped all the way there I obviously shouldn’t be checking if the

Player is close to it so I’ll just check the blocks that are around the chunk that the player is in if that makes sense and around the y height I’m actually having so much fun just exploring my own environment and one thing I’m actually pretty excited to add

Is oars I’m not 100 sure how to do it but that’s going to be pretty cool and oh my God this is so nice I’m not gonna lie I think I should probably stop running and get back to work so I’m using Trello to track what I should add

To the game and so as you can see I’m working on the dropped blocks and when a block is broken I believe I should do the particle effect and I also gotta get placing blocks done caves the way caves is done is actually pretty similar to how I’m generating the terrain at the

Moment which is by using 3D noise and we also use something called purlin warms which looks a bit like this so we use the purlin worms to generate like tunnels and then we can use 3D purlin to generate like the big caves and once we

Get that done plus the oars plus a death screen and just a little menu the game should be ready for version 0.0 I’m probably not going to make it public when I reach the end of version 0.0 just because I’m afraid this game’s gonna get

Taken down or like I guess deleted so in a future version I’m just gonna adapt everything to be more of my style and obviously not use any copyrighted assets and then I’ll make it public wow is just so beautiful I feel like everything’s starting to come together so like if I

Go over here and mine these blocks up here there may be no animation but all the drop blocks are actually down there and oh wait I need to make the dropped blocks ignore plants that is not good and see that’s why we test so there is

One thing I sort of forgot to show off that’s because there’s really no way to test it unless I’m using like print statements which is crafting the logic for crafting now works even though there’s no crafting table I can simply pass my inputs to this function over

Here so in this example the X represents nothing that’s just going to be an empty slot and then next we have the oak wood and same thing with the bottom row this would be crafted in like your inventory so another way to imagine this is Imagine these are empty and there’s wood

Planks here and as you can see it Returns the result which is a stick now in the next example I place the wood planks in the opposite side so imagine these two have wood planks and these two are empty and I got the same result and the logic behind this is actually pretty

Weird and that’s mainly because I didn’t want to have to save every single possible formula in fact the way that they are saved is pretty weird I first have a table that has the number of rows and then I have a table that has a number of columns So based on whatever

I’m given so let’s say we have with planks over here so what my code would do is shrink this down to where there are actual items so this would be a two by one because we have two rows and one column in the blocks so what the code

Will do is after it shrinks it down it goes to the two because this number of rows then one which is the number of columns and then it’s going to return all the recipes there are and the results so number one we have a stick

And we also have a torch then it checks if the recipe matches the recipe that’s that’s the way it works this way I don’t have to save a whole bunch of possible formulas like imagine this was a normal sized crafting table and a player placed down a wood lock literally anywhere then

I would have to return a wooden plane but then I’m gonna have to store Nine separate recipes just for wooden planks and the last couple videos lots of you guys have asked me to show you some of the code or go more in depth into the

Technical side but at the same time I know many of you guys don’t even want that because it does sound a little bit boring but if if you want the technical stuff if you want to understand how all this works then Now’s the Time the most important script I have is the chunk

Loading module script and that’s because this is a script that determines what should be loaded and what should be rendered anything’s true for unloaded and unrendered and this is sort of the root of every other script by every other script I mean dropped object and the world generation so every fourth

Frame I mean this could be any any number we want I find what chunks to load and the way that’s done is I just find like a circular radius of all the chunks that are around the player and then I load those chunks and what that basically means I’m just calling this

Function that just goes through all the chunk there are that we want to load and then it calls the appropriate functions in other module scripts and then the same thing is done for rendering however as I said before there is a render priority system and that’s literally

Just done by finding the closest one to the player and this is why math is important and after the priority is reordered I simply do the same exact thing I did to the low chunks function and I passed it over to the render chunks and then I just called the

Appropriate function and since the first thing that’s done for world generation is loading the way that’s done is I create a 3D table that’s just air and then I fill in the table with any pre-loaded data and what that basically means is if I generated a tree on a

Neighboring chunk and some of the leaves had crossed over into this chunk then I just filled them into the table and then afterwards I generate the terrain which is all just going to be Stone and that basically just shapes how the terrain is going to look and that’s where we have

All the cool mountains and cliffs and then using that terrain I fill in the surface layer which is obviously dependent on the bio but for us there’s just going to be grass blocks and dirt and then lastly I just fill in the top with flowers trees and so on one thing

You may have noticed is not here is the chunk differences and why did that just happen and I do that using a remote event just because if it’s a remote function then I’m gonna have to wait until the server returns something which would slow down the chunk Generation by

A lot just because I have to wait for the server every single time which depends on your internet latency so I just fire this event and on the server Riverside what’s going on is I’m literally just returning the values inside of a table if they exist and once

The server fires back with all that different information I just go through every single one of them I get the block name the world position I converted into a chunk position and lots of things are being done here so if the chunk is loaded then I just update my loaded

Chunks data which is the 3D table I was talking about but I have two tables one of them is the loaded chunks which is just the name of the blocks and where they should be and then I also have another table for the render chunks which is the same thing but instead of

The block name I store the actual block that is in the world and then a whole bunch of logic is being done here I’m actually not even 100 sure what I’m doing fine I mean this is a huge function so that’s a bit messy but if we

Look at the terrain generation you can see just how short the function really is I mean this is like 25 lines of code so really all the terrain generation that’s being done is literally just a numbers game it’s just a bunch of numbers being toyed around with until

You get a result that you like so that’s really how the train is working at the moment it’s nothing too complicated but it’s just important to keep your code organized and readable and it really wasn’t allow video which is why I literally just redid everything so that’s gonna be all in today’s video

It’s kind of cool seeing how this game went from something that I thought is like not really possible for me to achieve to figure out some very basic things to now like having gone way further than I thought I ever would and I’m excited to see what I’m gonna do in

The next video because even I don’t know maybe caves in order okay bye Thank you

This video, titled ‘Adding Multiplayer to Minecraft in Roblox’, was uploaded by 2nix on 2023-08-01 14:45:01. It has garnered 107080 views and 5731 likes. The duration of the video is 00:17:59 or 1079 seconds.

thank you for watching!

My Discord Community ➤ https://discord.gg/Uf6Q6zNek9

Socials Twitter ➤ https://twitter.com/2nixRBLX Roblox Account ➤ https://roblox.com/users/33295715/profile Roblox Group ➤ https://roblox.com/groups/15453186/2nix

My PC Specs i7-8700 RTX 2070 16GB RAM

My Equipment Keyboard – Razer Huntsman Mini Mouse – Razer Mamba Monitor – LG 27GP95R-B 27″ 4K Microphone – Rode NT Headset – Sennheiser HD280 Pro

#gamedev #roblox #programming

  • Discover the Excitement of Minewind Minecraft Server!

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

  • Tommy’s Minecraft Horror Mod Mishaps

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

  • 365-Day Wood Challenge: Day 10

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

  • Helios’ Hailstone Heights: Crafting Minecraft’s 1st Peak

    Helios' Hailstone Heights: Crafting Minecraft's 1st Peak In the Hailstone Hinterlands, Helios did roam, Crafting a mountain, making it his own. Ice farm on top, a tricky feat, But Helios conquered, his victory sweet. Dropping bodies, making progress too, Silence is golden, the work continues. Check out the stream, the journey unfolds, In the world of Minecraft, Helios’ story told. Read More

  • Piggy Portal Prank in Minecraft

    Piggy Portal Prank in Minecraft Minecraft: Exploring the Picky Piggy Portal Are you ready to dive into the world of Minecraft and explore the mysterious Picky Piggy Portal from Poppy Playtime? Join the adventure as we uncover the secrets of this intriguing new addition to the game! Discovering the Picky Piggy Portal As Minecraft players venture through the vast landscapes and intricate structures of the game, they may stumble upon the enigmatic Picky Piggy Portal. This portal, inspired by the popular Poppy Playtime game, offers a unique and thrilling experience for those brave enough to enter. Features of the Portal The Picky Piggy Portal… Read More

  • Minecraft Mystery: Spot the Change with Mikeize! Aha Moments Await

    Minecraft Mystery: Spot the Change with Mikeize! Aha Moments Await In the world of Minecraft, things are changing fast, Can you spot the differences and make them last? Mikeize is here to guide you through the maze, With quizzes and challenges that will amaze. From Exit 8 maps to barrier blocks, Endra and Ender Dragons, we’re ticking all the clocks. Splatoon-style showdowns and command block tricks, In the world of Minecraft, the fun never quits. So join us now, in this rhyming delight, As we explore Minecraft, day and night. With Mikeize as our guide, we’ll never be lost, In this world of creativity, at no cost. Read More

  • Dockside Digs & Mineshaft Mischief | HC Survival S2 Ep4

    Dockside Digs & Mineshaft Mischief | HC Survival S2 Ep4 In the world of Minecraft, we take a dive, Building docks and mineshafts to survive. From iron armor to coal and copper too, Exploring caves, finding treasures anew. The docks are complete, a sight to behold, With boats to park and stories untold. The mineshaft entrance, a work of art, With torches and barrels, a miner’s heart. Digging for diamonds, the goal in sight, To craft diamond armor, shining bright. Live streams at night, the adventure unfolds, In the world of Minecraft, where stories are told. So join me on this journey, don’t delay, In Hardcore Season 2, we’ll… Read More

  • Escape Barry’s Prison Obby 2 with Kaan & Dania

    Escape Barry's Prison Obby 2 with Kaan & Dania Minecraft Adventures with ItsKaantastic and Dania ItsKaantastic is a channel dedicated to gaming and having a blast! Kaan and Dania often dive into the worlds of Roblox, Minecraft, and other fun games on this channel. Expect exciting roleplays from places like Brookhaven, Adopt Me Town, and beyond, along with thrilling challenges. Subscribing is the best way to stay in the loop and not miss out on the fun! Exploring Minecraft Worlds One of the highlights of ItsKaantastic’s channel is their Minecraft adventures. From building magnificent structures to surviving in the wilderness, Kaan and Dania take on various challenges in… Read More

  • Minecraft HorrorPlay Season 3 – Episode 1

    Minecraft HorrorPlay Season 3 - Episode 1 Minecraft – Летосплэй (3 сезон) | HorrorPlay – #1 Exploring the World of Minecraft with Mods Join Cpgdpro (Максим) and Salat (Виктор) in their exciting Minecraft adventure with mods and a fun montage. The Cave Horror Project brings a unique twist to the game with its collection of mods, promising a thrilling experience for players. What to Expect: Modded Gameplay: Dive into a world where Minecraft meets horror with the Cave Horror Project’s mod pack. Experience new challenges, creatures, and environments that will keep you on the edge of your seat. Collaborative Fun: Watch as Cpgdpro and Salat team… Read More

  • Blowing Up TNT in Desert Temple WORLD RECORD!

    Blowing Up TNT in Desert Temple WORLD RECORD! Minecraft: Fastest Time to Blow off TNT in a Desert Temple! (WORLD RECORD) Embark on an exhilarating Minecraft adventure as players attempt to break records and showcase their skills in the gaming world. In this thrilling pursuit, a daring individual has set out to achieve the fastest time to blow off TNT in a Desert Temple, setting a new world record that has left the Minecraft community in awe. The Challenge With the same seed and version (1.18.1 -1975672861532093637), players are faced with the daunting task of navigating through the treacherous terrain of a Desert Temple. Armed with their… Read More

  • Minecraft Memes – Bedrock scum, prepare to weep!

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

  • Sigma Golem: The Hottest Block in Town

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

  • Insane Minecraft Seed Finds

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

  • Unbelievable editing skills by JB Films

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

  • Testing YouTuber Minecraft Fake Videos

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

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

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

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

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

  • Epic 30 Day Minecraft Mod Challenge! #shorts

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

  • Unbelievable Country Guessing Challenge! Subscribe Now!

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

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

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

  • 💥 Ultimate Terror Texture Pack Revealed by MRYTwasTaken!

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

  • Missed the Bus in Minecraft 😱 #MinecraftCrafts

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

  • Anarchy For Life

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

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

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

  • Cobble Valley

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

  • Minecraft Memes – “Modern art vs Minecraft graphics”

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

  • I rescue my epic dog in Minecraft #minecraftdogrescue

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

  • Join Minewind Minecraft Server for an Epic Adventure!

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

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

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

  • Jiri Mokaro’s Epic Axolotl Hunt in Minecraft!

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

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

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

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

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

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

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

  • Unbelievable Minecraft TikTok Hacks! 😱 #shorts

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

  • Alien encounter in Minecraft gone wrong?! 😱 #roblox

    Alien encounter in Minecraft gone wrong?! 😱 #robloxVideo Information This video, titled ‘Pov: Minecraft 👽 / #roblox’, was uploaded by ClaraPlays on 2024-02-09 15:33:17. It has garnered 2438 views and 77 likes. The duration of the video is 00:00:09 or 9 seconds. Read More

  • CREEPY POPPY PLAYTIME Building Challenge – I Cheat?!

    CREEPY POPPY PLAYTIME Building Challenge - I Cheat?!Video Information This video, titled ‘I Cheate mit //GRUSELIG in POPPY PLAYTIME Bau Challenge in Minecraft!’, was uploaded by Ente on 2024-03-24 18:00:30. It has garnered 6126 views and 267 likes. The duration of the video is 00:21:45 or 1305 seconds. I cheat with //CREEPY in POPPY PLAYTIME construction challenge in Minecraft! with: @Alphastein ​⁠​⁠​⁠​⁠ ​⁠​⁠ ​⁠​⁠​⁠​⁠​⁠​⁠ 🗿 To Alphastein ► @Alphastein 🍎 To Eiti ► @EidiMinecraft 🦆 My social networks 📷 Instagram: 🦆 Duck ► https://www.instagram.com/marcelente 🐤 Twitter ► https://twitter.com/Rippeax Minecraft: 🎮 The Site ► http://www.minecraft.net Minecraft Prank on friends / Minecraft building challenge / Minecraft a block is… Read More

  • PIGGY vs CREEPER EXPLOSION SHOWDOWN!!

    PIGGY vs CREEPER EXPLOSION SHOWDOWN!!Video Information This video, titled ‘CREEPER PRO WAS EXPLOSIVE MY HOUSE!!! | CREEPER PRO VS PIGGY NOOB’, was uploaded by piggy&creeper on 2024-02-23 17:58:59. It has garnered 2 views and 0 likes. The duration of the video is 00:01:06 or 66 seconds. Funny Minecraft Adventures with Piggy and Creeper!! #minecraft #skibidi #piggycreeper Subscribe! minecraft, minecraft 100 days, minecraft music, minecraft song, minecraft godzilla, minecraft videos, minecraft civilization, minecraft jj and mikey, minecraft live, minecraft aphmau, minecraft animation, minecraft asmr, minecraft armadillo, minecraft ambience, minecraft armor trims, minecraft automatic farm, minecraft arg, minecraft animation movie, minecraft ancient city, a minecraft song,… Read More

Adding Multiplayer to Minecraft in Roblox