Modding by Kaupenjoe – Fabric Modding Tutorial – Minecraft 1.20.X: Custom Mobs | #28

Video Information

Oh yeah let’s add a custom mob to Minecraft new topics added to the fortune fabric courses such as table and writable entities projectiles throwable projectiles and boats as well as first steps to biomes and dimensions courses Linked In the description below oh oh right we found yourself back

Intelligence more and in this tutorial we’re gonna be adding a custom mob to Minecraft and this is going to be including custom animations so let’s take a look at the mob over here so this is of course going to be our cute little porcupine right here and the porcupine

It’s gonna be vanilla only so no need for gecko lib if you want to make your own custom entity of course you will need blockbench I do have a guide on blockbench I think it is for gecko lip but the same idea applies basically you

Want to create a custom mob right here a custom entity and what’s very important is you want two plugins and those plugins are going to be the following it’s the animated Java plugin as well as the animation to Java converter and I believe for fabric you should also get

The fabric modded entity and with all three of those then you should be good to go and what you then have is you have an animated Tab and you can see that we have a walking animation another walking like the animations I made those myself they are not listen okay they are

Workable right they look they look fine they’re okay a but they’re not the best the model was done by someone else and then we have an attack animation which is this I actually think this is really cool right so it like sort of extends and then you know the the quills just

Like you know extend it’s pretty cool there’s also a sitting animation which we’re not actually going to use but it is there and available and of course the blockbench file as well as all of the other files and the code and everything Linked In the description below

Available to you for download now when we have a blockbench file what can we do with it well we need to export quite a few things namely three of them so we want to go to file export and then export Java entity if this does not

Appear then you want to make sure that your project right under the convert project basically that the current format is modded entity that’s quite important so do keep that in mind for the blockbench files that I will provide that should be the case so we want to

Export the Java entity this is going to export a Java file so we’re just going to do that exporting the porcupine model right here we then want to go to file export again to export animations to Java in this case we wanted to select the your mapping is very important for

Fabric of course I’m just going to call them the porcupine animal over here and save that as well and then lastly on the texture we want to right click save as and porcupine PNG is exactly right so there you go so those are going to be the three things that we’re going to

Need to export from blockbench and now we can proceed back to IntelliJ and actually calling the entity so entities are they’re interesting let’s just say that so let’s start in the tutorial mode package and we’re going to right click and make a new package called entity

Inside of there we’ll need a couple of other packages number one is going to be the client one then we need another package in the entity package that’s going to be the custom I just like to put that basically all of the custom entities in there and then the last one

Is going to be the animation package there you go so we can start by actually adding a class in the entity package itself that’s going to be the mod entities this is where we will actually register all of our entities and there’s a couple more things that we’re going to

Need let’s just create all of the different classes that we need in the custom package we wanted the poor coupon entity see there you go then in the client one we can create the poor coupon renderer and in the animation in the client we can also create the mod model

Layers and then in the animation we can create the mod animations there you go I believe that that should be all of them what we can then do is we can take the porcupine model Java file that we have exported from blockbench and we can

Actually insert it or you know add it to our client package you will be met with this mess which once again first of all calm down there’s a lot of red but it is not as bad as it might seem because you can see right here the class name does

Not match the name of the file which of course we have to fix immediately so this is going to be poor Q Pi in a model and you can see you know things start getting way better I think a similar thing here poor coupon model this is

Just going to be the Constructor we can delete the model layer right here and then basically the only thing we want to do now all of the red marked words we just want import so you click on this and press alt and enter and be sure to import the correct class over here

Netminecraft entity entity model import that as well and then you basically just go through each of the different classes over here so you can see that the layer definition right here is not actually available now why would this be the case this is the case because for some reason

It even though it detected that this is a fabric Model it did not properly do it because you can see that the export version it’s very strange that why it’s very strange that why it does that but basically you want to go to file project

And you want to make sure on the export version you select the you select fabric 117 plus confirm and now we need to re-export the Java entity because otherwise it’s going to use the wrong mappings for some reason so what we can do is we can just delete the porcupine

Model again re-import it and then we should actually be able to see that this is so there you go look at this we even have the correct name over here and now we have all of those different parts I suggest what you do is you you just delete them you just basically delete

All of them except for the porcupine itself because they are just not necessary and now we do the same Spiel basically just importing the correct classes over here and now look at this this one is available and now this one is available and now all of them are

Available just like we would expect and there’s another one over here no dilation is also in there so that is totally fine entity model also import that and then at the very bottom you can see there’s a lot of things going on right basically the model part data

Right these are all the individual pieces of the model that are basically represented as code in this case and there we go if we import these set angles and the render method over here then everything is fine and no more errors should be present but we’re not

Quite done just yet because we actually wanted to change just a couple of things and that is that the actual porcupine model right here should actually first of all be of a type T extends porcupine entity and then the entity model should not be an entity model but what it

Actually should be is a single Port entity model of type T the reason why we’re doing this is so that it it’s easier for us to do the animations we’re going to fix the error in just a second we also just want another private final model part right here and that’s going

To be the head and the head we’re going to do the following way we’re going to say occupying dot get trial we’re going to get the body then we’ll get the child of that which is going to be dot get child poor so and then we’re going to

Get the child of that which is going to be called head there we go now you might ask yourself how do you know that that is the way to the Head well if we go back to blockbench for a second you can see porcupine is the root then we have

The body then we have the trial torso and then here we have the trial somewhere right here the head and if I were to for example rotate the head around you can see that is exactly the headle that was that was a neck breaking speed over here we don’t want that but

Yeah you can see that is basically the head how you can basically find the specific model part like that and to fix the arrow right here we basically just want to go down all the way here here instead of an entity this could be now a porcupine entity and all of a sudden

Everything is saved and that should be at that which one is the issue oh they get part of course so here we have the get part this is the root part basically you just want to return the porcupine that we already have and that is basically everything that we are going

To need here of course all of the code is available to you as well so no worries at all the reason for this era is going to be fixed in a moment because right now the porcupine entity you know it’s an empty class so it doesn’t do

Anything once that is changed then this error also goes away and there you go so no worries at all and that is actually for now everything we need to do in the model class in a bit we also need to set up the animations there but let’s first

Of all continue to go to the actual entity itself so that’s going to be the porcupine entity this will extends the animal entity class and we shall hover over this implement the Creator trial method hover over this again create Constructor matching super and there we

Go making sure that this is going to be set to public here the Constructor very important and there we have it now when it comes to entities they can be well I mean quite complicated and there is a lot of them but what you have at the at

Your disposal is basically all of the different classes from vanilla so if you go into the animal entity class for example you can middle Mouse one click and you can go in here if you have the blue line right here what you can do is if you haven’t done this already you can

Open the terminal dot slash Gradle w gen sources and you just let that run through and once that is done we can actually get the proper like sources for Minecraft is always highly recommended to do this I did I believe also show this in the first tutorial about you

Know sometimes people forget about that or something like that but you know let’s just let this run through and then we can actually see the proper one instead of looking at compile decompiled stuff all right so we are done here built successful in about two minutes

And what we can now do is we can choose the sources and we have this Dash sources jaw right here if we say okay all of a sudden we now have the proper sources there are only tiny differences usually there aren’t great but it’s still better to have that because now we

Can basically just go through all the different entities that you see mob entity and I keep just middle Mouse by clicking on this and you can see it is a crazy tree until we reach entity right here and once we reach that we can press

Ctrl H and now we can see and expand every single entity class that exists in vanilla and I cannot recommend enough to basically just be like I want an entity that basic kind of works like a guest bam you go into the gas you take a look

At it they’re like oh something doesn’t add up here well you go to the Flying entity maybe there’s something in there that’s interesting like I just cannot recommend enough to basically just take a look at all of the different classes that are available all the different entities if you have a specific entity

That you want to make they are probably the best resource that you can have of course this means that you need some Java knowledge to understand that everything that’s happening but that is just how it’s going to be I mean I’m going to just keep saying that it is

What it is now with this done the create trial method is going to get a deliberate error right here because for now I just want to get the two most important things in here and that is going to be number one the attributes as well as the goals so we’re gonna make a

An entity without any animations for now we’re just gonna add it this it’s gonna be fine it’s going to be like it’s going it’s going to work and then we’re going to after that as the animations as well so this is going to be two things the

Goals as well as the attributes let’s do the attributes first this is going to be a public static default attribute container data Builder this is going to be the create poor coupon attributes and it’s going to return mob entity mob entity dot create mob attributes and then we just add different attributes so

For example entity attributes dot for example Max Health right we want some Max health over here maybe 25 is a little bit much maybe 15 is a little bit better and then we can add another one so entity attributes dot for example the movement speed where is the movement

Speed right here so movement speed is 0.2 for example there you go and then we can add another one entity attributes that maybe armor maybe just armor or something like that right maybe at a I don’t know 0.5 or something like that something and then we can also add

Attack damage entity attributes dot attack damage there you go and the attack damage may be A2 here as well there you go so as you can see the attributes basically you know it’s Health it’s it’s movement speed things like that they are quite important to well basically to have otherwise you

Will run into some issues and we need to also register those now you need to register those we can’t do that just yet because we first need to register the entity but you know one step at a time because the other thing that’s quite important are go balls for this you want

To override the init goals method right here and what we wanted to do is we basically wanted to add goals to a goal selector so we can say this starter goalselector.add then we have a priority so priority the lower the priority right so zero would get executed before 1

Before 2 and so on and so forth so the lower the priority quote unquote the the sooner it gets executed basically and basically the the number one priority that you always have is going to be the swim goal because otherwise your your mob if it is in water it’s just going to

Sink and uh yeah and it’s going to drown so that’s usually not something you want so highly recommend it to basically always put the swim goal at the very top over here with priority zero and then we can basically proceed so we can add a couple of other priorities and goals

Right here so those are going to be for example the and the new anime animal mate goal so this is going to basically have when when given the proper food they are going to mate over here and then we have have the another goal for example maybe a priority three attempt

Goal this is going to be this and maybe a a 0.25 increase and then we have an ingredient of what exactly of items maybe it’s going to be um maybe it’s going to be item start I don’t know what they eat beetroot something like that maybe something yeah

Beetroot why not and then this is going to be false they cannot be scared and you can see that there are a lot of gold and a lot of different things that you can do once again with the same idea you can middle Mouse one click on a goal and

You can then click on the goal control h and you have every single AI like every single goal available in vanilla over here that you can take a look at right the the calm down goal shoot Fireball go from The Blaze we have a move goal from

The Slime that there are so many different goals as you can see so many different examples if you’re like oh I want really want to have a custom entity with like a custom AI you have it all there it’s impossible to show every single type of idea or something that

You want so I cannot recommend enough go through the goal class take a look at how it works take a look at some examples and that that is the best way that you can basically do this and implement the entity of your dream so to speak I’m just going to implement a few

More goals over here we’re gonna have the follow parent goal this is going to be fine yep and we have a couple of more just random ones there’s going to be the Wonder around Fargo that’s going to be fine but it’s going to be a normal

Speedier 1D and then maybe two more and that’s gonna be five and six this is going to be the look at entity goal with which is going to have a another second parameter which is actually the player so basically you can select which and that is going to be 4D a 4f actually

Or a range so you can actually see you can actually select which which type of entity this should look at which I find really cool actually and then there’s also the look around goal which is just going to make the entity look around a little bit more and there you go so

Those are some example goals over here once again you can try this out take a look at what goals are available try to you know use them and you should be able to see and really customize your own custom entity there but those are the basically the two big things and now we

Can actually register the entity in the mod entities class now for this it’s actually as simple as saying public static final entity type of type porcupine entity this is the poor coupon equal to registry making sure we choose net Minecraft registry extremely important that register Registries dot

Entity type and then a new identifier and then a new identifier of tutorial mod.mod ID or poor coupon fabric entity type Builder dot create with a spawn group of creature and then porcupine entity colon colon new after the first closing parenthesis dot dimensions and this is going to be entity Dimensions dot fixed

And we’re going to do a 1 and a one it’s going to have a hitbox of basically one block by one block and then after the second closing parenthesis dot build and ending it all with a semicolon and there you go that is everything we need and

Now we can actually also fix a few issues so the child over here mod entities that porcupine that create passing in the world and there we go now we have a baby porcupine here as well awesome and of course vital are the attributes very important here you can

See that they are grayed out which means they are not used that means we want to go to the tutorial or class and call the fabric default attribute registry.register mod entities dot porcupine and then we can say porcupine T that create porcupine attributes and Bam there we go we have our custom

Attributes also registered and now the entity should be basically almost good to go right so we still have the render as well as the mod model layers let’s do the mod modulators first because that is a little bit easier so this is going to be the public static final entity model

Layer called poor coupon equal to a new entity model layer with a new identifier tutorial mod.mod ID and this is the poor coupon and after the first closing parenthesis we then have another string called Main and then no more errors should basically be present and this has to be connected with the

With the model so this happens in the tutorial mode client class so this is going to be the entity model layer registry dot register model layers modulators.porcupine and then you get the porcupine model dot a colon colon get textured model data so what does this really do well basically it just

Says okay whatever the data in here is there are the textured model data this is going to be our model represented in code right that is going to be registered more or less under the model layer of the porcupine that’s pretty much all we’re doing and now onto the

Renderer which is actually one of the more easier classes the only thing that’s crazy is the extension over here this extends mob entity render of type poor occupied entity of type porcupine model of type porcupine entity so that is absolutely ridiculous but we’re going to implement the get texture method we

Will then create Constructor matching super and here only a few things that need to be changed firstly in the Constructor you want to delete the last two parameters you only want to have the entity the context right here and then say New porcupine model entity context dot get part mod model layers

Dot porcupine after the second closing parenthesis we then have a this this F is the size of the shadow that the entity casts 0.6 is going to be fine you can of course also change that however you see fit we’re going to have a private static final identifier called

Texture this is the texture of the entity this is a new identifier to tutorial mod.mod ID textures slash entity slash poor coupon dot PNG and we can actually also add this this texture of course has been exported a couple of minutes ago from blockbench so we’re

Just going to take that and we’re going to add it here in the entity folder and there we freaking go so now we have the porcupine PNG over here as well and we can basically just return that in the get texture method and then there’s

Another thing that we can do and that is overwrite the render method right here and that one actually allows us to do some pretty funny things so for example we can say if the mob entity is a baby then what I want to say is I want to say

Matrix stack dot scale and maybe I want to make this like half the size that it usually is there you go and if it’s else then I’m just going to copy this over and then it’s going to be not 15 times the size because that would be very very

Big I don’t think that that’s a good idea but maybe one times the size so there you go so this basically will also scale down the baby by basically half make sure that all the XYZ coordinates are the same like the scaling Works in all the all the same directions because

Otherwise it’s going to look very strange and now lastly we just need to connect the renderer to our actual entity that is once again done in the tutorial model client class so we’ll just so here we’re just going to say entity render our registry that register mod entities dot porcupine and then

Porcupine renderer colon called new no errors should be present and we now have a custom entity it’s not going to have any animations but what you already would be able to do is you would already be able to lower it with beetroot and and it could mate but right now it would

Mate with I believe we I believe that’s the default item but we can override that by saying is a breeding item and let’s just say for example stack dot is is of items dot beat root if right click two of them with beetroot then they’re gonna mate and they’re gonna have a

Little tiny uh porcupine baby so with this first pass through let’s go into the game and see if it works alright friends was back in Minecraft and let’s just see and summon our porcupine right here and there we freaking go we got a porcupine now of course as you can

Clearly see it has no animations it’s uh you know it’s very very interesting but what we can do is we can get ourselves some beetroot and look at this now they’re following me and I can right click them and we’re gonna get a tiny little porcupine baby right there look

At him look at him go let’s go that’s awesome so that is going to be basically the first step for porcupines right and now let’s add not only the animations but a couple of other things as well and the couple of other things I mean of course

Sounds because that is a question I get very often actually and you know sometimes it does amaze me because the literally only thing that you need to do is well if you go through some of the actual other classes you should be able to find this but if you just type in

Sound inside of your custom entity you can see you can override the parts the death sound hurts on Ambient sound all of that you can override you can see how many different methods there are to override so let’s just over the Ambient sound right here let’s also override the

Hurt sound so the get hurt sound and the get death sound here as well and let’s just do some crazy stuff so let’s how about for the Ambient sound we’re gonna do sound events dot maybe the fox ambient I feel like that makes a lot of

Sense the hurt sound we’re going to do sound event start let’s do the entity underscore cat underscore hurt why not we could also do his but that would be kind of funny but let’s just do that and then the sound events here is going to be the dolphin def sound because I just

I don’t know why but I really like to just use one of the dolphin sounds every time so there you go but and of course you can use your own custom sound events as long as they’re registered properly then you can also add those right here

In the ambient hurt or death sounds as well that’s basically how easy it is to do sounds but now it goes on to animations and animations are a little more complicated but you know overall they’re not too bad what I highly recommend you do for the animations as a

Reference I mean of course you can look at the code I’m writing over here but you can also take a look at the camel so this would be the camel entity if I recall correctly there you go so the camel entity so you can see that it has

Some animation States and basically but it has some other things like the app that animations method and the update limbs method and stuff like that so there’s a few things that are quite interesting now the first thing we can actually do is literally just copy over the update limbs method because that is

Is exactly the thing that we’re going to need so let me just actually go to the very top over here yeah let’s do it at the very top of it why not so we don’t have a dashing animation that’s fine but we do have an entity pose over here so

We can actually just literally copy this and that that is going to be already pretty nice and pretty fine now we are going to need some animation States and a animation timeout that is going to be a public final animation State called idle animation State equal to a new

Animation State there we go we’re also going to have a private int Port idle animation timeout equal to zero right here and then we will need a two methods actually number one is we need to overwrite the ticker method so that’s going to be the

Tick method and here we want to say if this dot get World dot is a client then we want to do something and the thing we want to do is a custom method and that is the private void setup animation states there you go in the camel entity

That method is actually called update animations either one works fine right I mean the name of this method doesn’t really matter it only matters that we call it right here setup animation states there we go and then what happens in here well funnily enough literally

What you could do is you could just copy over this these the lines over here right Bam Bam and that’s it now we just need to change this this is going to be the idle animation timeout there you go so it’s not called cooldown but time out

Here and this is not the idling animation State I call it the idle animation but as you can see apart from the names here the this is exactly the same because because in this case we I just basically took it from The Entity of the camel because it’s the easiest

Way to well use it there’s a there’s a very apt example and that is basically the idle animation now it still doesn’t know what animations to play and what to do and stuff like that for this we of course need to populate the mod animations right here and how do we do

That well we have the text file that we’ve exported like half an hour ago and what you can literally just do is copy all of this over and then just paste it in here and you just need to then import all of the different classes again and

Once you’ve done that you can basically see and I need to go to the animation here as well there you go no more errors should be present and we now have all of our animations sort of also imported into our code and the animations are set

Up in the model file so we can go to the model file over here the porcupine model and we can go down and in the setup angles this is where this all happens now this is extremely important the first thing in the set angles method yeah that you want to call is always

This is that get part that Traverse dot for each model part Poland colon reset transform do not forget calling this if you don’t call this then every time your animation plays it’s going to get added onto each other until you know ridiculous things happen you have to

Call this at the very beginning don’t forget it we’ll also have a little bit of a helper method right here that’s going to be the set head angles method and it’s going to take in a float head yaw and a float head and there we go and I’m just going to

Copy the contents of this this is once again actually pretty much taken from the camel just so that the head rotates properly so this is going to be cold here head angles net head yaw net and then the head hitch right here and that’s it this is going to rotate the

Head when it looks to the words the player as well as when it just looks around randomly so that is for what the head angles is for and now the animation the first one is the animate animate movement this is going to be mod animations that porcupine walk a limb

Swing the limb swing amount then a 2 for the scale and a 2.5 here for the distance I just once again install those numbers from the camel you can of course change those numbers as well and see what happens and then the other one is the update animations where you actually

Want to say entity dot idle animation State mod animations dot porcupine idle then agent ticks and then a one here for the speed multiplier and you can basically see we have now sort of fused the idle animation state from The Entity with the actual animation from our mod

Animations and now it knows to basically play that animation when the Island animation state is called for start right so you can see that the island I should say that sort of happens here and if that happens then what is being basically displayed is the porcupine idle animation funnily enough that is

Actually everything that we need to do so now the animations should be in game and everything should be set up but we’re not quite done just yet because just for the sake of argument I also want to add a a spawn egg because it you know we want to be complete over here

Okay that that’s just going to be a good thing to do so this is going to be a public this is going to be a public static final item right here I’m gonna quote these poor coupon underscore spawn underscore egg equal to a to register item or coupon underscore spawn

Underscore egg and this is a new spawn egg item mod entities dot porcupine and then the colors I don’t think the color is actually quite matched but I’m just going to take the ones that I have already basically created over here because why not and then after this one

Is a new fabric settings and there you go now we of course still need to do a very important thing and that is actually add that to the data gen because the porcupine item has a specific item model that we want to do I’m just going to copy it over because

It’s going to be the same thing for every one of your spawn eggs because you basically want to have a new model of item slash template spawn egg that is the way that the colors are basically going to be generated and then let’s just run the data gen right here and

Then while that happens I can also add the translation for the spawn egg that is once again one of those things that’s not too important but you know it’s like you know while we’re while we’re at it why not also add that as well apparently 14 things were written I I don’t even

Know which ones but it should be fine it should be okay and just to close this up we can also then add the porcupine sponeck to the item group and now we can go into the game and actually look at the beautiful anime nations of our

Custom entity so let’s take a look and here we are in the game and look at this look at this look at him look at him go so this is absolutely amazing and this it already breathes so much more life into them when you know they turn their

Head and they walk around a little bit and there’s just a tiny bit of movement over here now the animations I will admit they you know I made those myself they are not the greatest they’re not the best but they do work and they are well animations so that is really

Freaking awesome and you can also hear the sounds right so that’s the cat hurt sound and all of that so everything working we got a custom mob with custom animations without any type of API right all done in vanilla absolutely freaking fantastic and next time in this video we’ll

Continue with our report coupon by adding a custom attack animation hope to see you there so yeah

This video, titled ‘Fabric Modding Tutorial – Minecraft 1.20.X: Custom Mobs | #28’, was uploaded by Modding by Kaupenjoe on 2023-10-05 14:59:51. It has garnered 1700 views and 85 likes. The duration of the video is 00:29:58 or 1798 seconds.

In this Minecraft Modding Tutorial, we are adding a Custom Mob to Minecraft 1.20.2 – this is basically a Custom Entity with Animations all done in Vanilla Minecraft with Fabric. The custom entity is made with the help of Blockbench!

== MODDING COURSES == FORGE ▶️ https://url.kaupenjoe.net/CourseForge120X FABRIC ▶️ https://url.kaupenjoe.net/CourseFabric120X

== COMPATIBILITY == ✅ Compatible with 1.20.2 ❗Somewhat Compatible with 1.20.1 ( https://url.kaupenjoe.net/mbkj101/changes )

== SUPPORT ME ON PATREON == ▶️ https://url.kaupenjoe.net/patreon

== ASSETS & DOWNLOAD LINKS == GitHub Repo: https://github.com/Tutorials-By-Kaupenjoe/Fabric-Tutorial-1.20.X/tree/28-entity Zipped Assets: https://url.kaupenjoe.net/mbkj101/assets

== 25% OFF FOR GAMING SERVERS == ▶️ https://www.bisecthosting.com/Kaupenjoe

== TAKE A LOOK AT MY COURSES WITH COUPON CODES == ▶️ NEW Forge Modding with Minecraft 1.20.X: https://url.kaupenjoe.net/CourseForge120X ▶️ NEW Fabric Modding with Minecraft 1.20.X: https://url.kaupenjoe.net/CourseFabric120X ▶️ Learn Forge Modding with Minecraft 1.18: https://url.kaupenjoe.net/CourseForge118 * ▶️ Learn Fabric Modding with Minecraft 1.18: https://url.kaupenjoe.net/CourseFabric118 * ▶️ Complete and Roblox Lua Game Development: https://url.kaupenjoe.net/RobloxCoupon *

== SUPPORT ME ON PATREON == ▶️ https://url.kaupenjoe.net/patreon

== SOCIALS == Discord: https://url.kaupenjoe.net/discord Personal Twitter: https://twitter.com/Kaupenjoe

Instagram: https://url.kaupenjoe.net/tutorials/instagram Facebook: https://url.kaupenjoe.net/tutorials/facebook Twitter: https://url.kaupenjoe.net/tutorials/twitter TikTok: https://url.kaupenjoe.net/tutorials/tiktok Written Tutorials: https://url.kaupenjoe.net/tutorials/blog

== LICENSE == Source Code is distributed under the MIT License. Additional Licenses for other assets can be seen below or in the accompanying CREDITS.txt on download.

== ADDITIONAL CREDITS ==

== AFFILIATE DISCLAIMER == * Some of the links and other products that appear in the video description are from companies which I will earn an affiliate commission or referral bonus from or are my own products. This means that if you click on one of the product links, I’ll receive a small commission or additional kickback without any additional cost for you. This helps support the channel and allows me to continue to make videos. Thank you for the support!

== HASHTAGS == #Minecraft #MinecraftModding #MinecraftTutorial #Kaupenjoe

  • 2024’s Top Fantasy Flicks, Minecraft’s Lost Lands Encore

    2024's Top Fantasy Flicks, Minecraft's Lost Lands Encore In the world of fantasy, where dreams take flight, We bring you the top movies, shining bright. From Harold and the Purple Crayon to Minecraft’s delight, Each film a gem, a true cinematic height. Woodwalkers and Imaginary Friends, a magical sight, Chantal in Märchenland, a story so light. Beetlejuice 2 and The Crow, dark as night, Hellboy and Red One, ready for a fight. Wicked: Enchantress and Mufasa’s might, Paddington in Peru, a pure delight. White Snow and In the Lost Lands, stars so bright, In the world of fantasy, our imaginations take flight. So join us on this… Read More

  • Minecraft Prank Ideas for Friends

    Minecraft Prank Ideas for Friends 10 Prank Ideas to Mess With Your Friends in Minecraft Create! Are you looking to add some fun and mischief to your Minecraft gameplay? Look no further! Here are 10 prank ideas to mess with your friends in Minecraft Create! 1. Fake Traps Set up fake traps that look dangerous but are harmless. Watch as your friends cautiously navigate through your devious creations! 2. Invisible Maze Create an invisible maze using glass panes or barriers. Your friends will be left scratching their heads as they try to find their way out! 3. Teleportation Shenanigans Set up teleportation pads that… Read More

  • Ghostly Ghastly: Shelter Defense Blast!

    Ghostly Ghastly: Shelter Defense Blast! In the world of Minecraft, a legend unfolds, Of a ghast that transforms, a tale that’s been told. In the dark, it lurks, a danger unseen, Build a shelter defense, keep your base clean. The Game Koala shares, with a playful tone, Urban legends in Minecraft, all on his own. Subscribe to his channel, for more tales to hear, Of creepypastas and myths, that bring a new fear. With background music, setting the mood right, Each story he tells, a thrilling delight. So join in the fun, and listen with glee, To the world of Minecraft, where legends run… Read More

  • Discover the Thrills of Minewind Minecraft Server!

    Discover the Thrills of Minewind Minecraft Server! Welcome, Minecraft enthusiasts! Are you ready to embark on a new adventure in the vast world of Minecraft? Look no further than Minewind server, where endless possibilities await you. Join a community of like-minded players who are passionate about exploring, building, and surviving in this blocky universe. Imagine creating your own portal to a realm filled with mysterious creatures like the Sea Eater. In the video “Membuat Portal Sea Eater ~ Minecraft PE,” we catch a glimpse of the awe-inspiring landscapes and creatures that await you in Minecraft. With a mouth estimated to be 8,800 km tall and 8,750… Read More

  • Minecraft: TV Shows I Watched as a Kid

    Minecraft: TV Shows I Watched as a Kid Welcome to the World of Minecraft with 方块轩 方块轩, a dedicated creator in the Minecraft realm, brings a unique blend of humor and creativity to the gaming community. With a focus on child-friendly content, 方块轩’s channel is a safe space for entertainment without any harmful elements. Let’s delve into the exciting world of Minecraft through the eyes of this talented creator. Original Minecraft Animations One of 方块轩’s standout features is the creation of original Minecraft animations. These animations are not only entertaining but also carry a message of joy and laughter. Through these animations, 方块轩 showcases the endless possibilities… Read More

  • Finishing Seaopolis Modpack in Minecraft!

    Finishing Seaopolis Modpack in Minecraft! Minecraft FR Seaopolis: Submerged – Exploring the End Game! Episode 13: Journey Towards the End Game In the thirteenth episode of the Minecraft Seaopolis Submerged modpack series, players are diving deeper into the game, inching closer towards the elusive End Game. The excitement is palpable as new challenges and adventures await in the vast world of Seaopolis. Discovering New Horizons As the players navigate through the intricate landscapes of Seaopolis, they encounter a myriad of creatures, resources, and mysteries waiting to be unraveled. From underwater caves to towering mountains, every corner of this virtual world holds a surprise, keeping… Read More

  • Join Minewind: The Ultimate PvP Server Experience

    Join Minewind: The Ultimate PvP Server Experience Welcome to Newsminecraft.com, where we bring you the latest updates and trends in the Minecraft community. Today, we want to talk about the growing trend of optimizing your Minecraft experience with mods. If you’re looking to enhance your PVP skills and reduce lag while playing, you need to pay attention to the latest mod updates. The Minecraft modding community is constantly evolving, and it’s essential to stay informed about the mods you’re using. In a recent YouTube video titled “Những Bản Mod Giảm LAG và Setting Dành Cho PVP Trong MINECRAFT,” the creator discusses various mods and settings to… Read More

  • Ultimate Minecraft Server Security Guide

    Ultimate Minecraft Server Security Guide Enhancing Server Security in Minecraft Running a Minecraft server comes with its challenges, especially when it comes to ensuring the security of your community. Griefers and hackers can disrupt the gameplay experience for everyone involved. In this article, we will explore some essential security tips to help you protect your Minecraft server and maintain a safe environment for all players. Core Protect Plugin Core Protect is a powerful plugin that can help you track and rollback any changes made on your server. By installing this plugin, you can easily monitor player actions, identify any malicious behavior, and revert any… Read More

  • Minecraft Create Solves Food Problems!

    Minecraft Create Solves Food Problems! Minecraft Create: Solving Food Problems in the Virtual World Embark on a culinary adventure in the virtual world of Minecraft Create! With endless possibilities and creative freedom, players can explore innovative ways to solve their food problems within the game. Exploring New Food Sources One of the key features of Minecraft Create is the ability to discover and cultivate various food sources. From planting crops like wheat, carrots, and potatoes to raising animals such as cows, pigs, and chickens, players can experiment with different farming techniques to ensure a steady food supply. Food Preservation and Cooking Players can also… Read More

  • Ultimate Minecraft Mod Pack for Boss Fights & Alchemy

    Ultimate Minecraft Mod Pack for Boss Fights & Alchemy The Ultimate Minecraft Mod Pack for Adventure Seekers Are you tired of the same old Minecraft experience? Looking for a new challenge and exciting adventures? Look no further! Dive into the hidden gem of Minecraft mod packs – Rebirth of the Night. Whether you prefer playing solo or with friends on a server, this mod pack offers a unique and thrilling experience that will keep you hooked for hours on end. Unleash Your Creativity with Minecraft 1.12.2 Rebirth of the Night is designed for Minecraft version 1.12.2, providing a stable and feature-rich environment for players to explore. With a… Read More

  • EPIC Minecraft Adventure – Witherd Games Part 1

    EPIC Minecraft Adventure - Witherd Games Part 1Video Information This video, titled ‘Rockin minecraft – part 1’, was uploaded by Witherd Games on 2024-04-03 23:46:52. It has garnered 17 views and 0 likes. The duration of the video is 00:51:08 or 3068 seconds. https://www.youtube.com/@rockingVR1 https://discord.gg/uV3rTMsQDq MODS: Create for bedrock: https://www.vatonage.com/post/create-addon Read More

  • Breathtaking Speedrun Pro Mincraft

    Breathtaking Speedrun Pro MincraftVideo Information This video, titled ‘WR Speedrunner Tries Minecraft’, was uploaded by fireb0rn on 2024-10-16 17:00:45. It has garnered 44108 views and 3313 likes. The duration of the video is 00:00:13 or 13 seconds. edited by @vampycatxo ▶ FOLLOW Stream: https://www.twitch.tv/fireb0rn Stream VODs: https://youtube.com/@fireb0rnVODs Discord: https://discord.gg/S6cJBeN Twitter: https://twitter.com/fireb0rn Instagram: https://www.instagram.com/fireb0rngg/ #hollowknight #speedrunnervshunters #manhunt Read More

  • BUILDING Secrets in Empire War – SHOCKING Battle Strategy in Minecraft

    BUILDING Secrets in Empire War - SHOCKING Battle Strategy in MinecraftVideo Information This video, titled ‘How BUILDING changes the course of a Battle… in Minecraft’, was uploaded by Empire War on 2024-10-18 14:30:23. It has garnered 9164 views and 150 likes. The duration of the video is 00:00:24 or 24 seconds. This Minecraft server is called Empire War. Players split into two teams, where one defends a castle or city, and the other one attacks it. The maps are large and varied, mostly themed around the Lord of the Rings. Join the Discord to find out about the Battle events on this server! Discord: https://discord.empirewar.org Server IP: play.empirewar.org #minecraft #gaming… Read More

  • Insane Minecraft Secret Dog in NotGamerDV 🐶🔥

    Insane Minecraft Secret Dog in NotGamerDV 🐶🔥Video Information This video, titled ‘Ek padha likha dog 🐶🐕 #minecraft #viral #trending #shorts’, was uploaded by NotGamerDV on 2024-06-21 23:57:42. It has garnered 7353 views and 181 likes. The duration of the video is 00:00:16 or 16 seconds. Ek padha likha dog 🐶🐕 #minecraft #viral #trending #shorts Your Query balveer song balveer song bumblebee cricket match dafuq!boom! full speed gamerfleet review kahaniyan Olivia putra 8000 cc Title:- minecraft minecraft herobrine herobrine minecraft meme minecraft digging minecraft mods herobrine help minecraft funny minecraft short minecraft survival minecraft herobrine save is herobrine in minecraft minecraft pe minecraft herobrine sighting minecraft herobrine… Read More

  • Mystical Agri-Craze: Ozone 3 Ep. 10

    Mystical Agri-Craze: Ozone 3 Ep. 10 In Project Ozone 3, we dive deep, In mythic mode, challenges to keep. Mystical agriculture, our new feat, Growing ores and blocks, our power to meet. Diamonds, iron, gold, all in our hand, Nether stars, we’ll soon command. Join our community, hit subscribe, Together we’ll thrive, let’s take the dive. Your support fuels our Minecraft quest, In this modded world, we’ll be the best. Leave your comments, share your delight, In this gaming journey, let’s take flight! Read More

  • Mob Madness: Tight Squeeze Showdown! #minecraft

    Mob Madness: Tight Squeeze Showdown! #minecraft Looks like the mobs are really feeling the pressure in this tight situation! Let’s see if they can squeeze their way out of this one…or if they’re just too square to fit through! #minecraftstruggles Read More

  • Sneaky Alpha Minecraft Channel: Only Streams

    Sneaky Alpha Minecraft Channel: Only Streams The Mysterious Alpha Minecraft Channel that Exclusively Streams Exploring the depths of the Minecraft universe can lead players to some truly intriguing discoveries. One such enigma is the Alpha Minecraft ARG, a channel that captivates viewers with its live streams and eerie storyline. The Story Unfolds In the first episode of the Minecraft ARG series, viewers are taken on a journey through the HEJLOWEENSKÝ SPECIÁL on Halloween. The channel in question is shrouded in mystery, as it only broadcasts live streams. Why does it operate in such a peculiar manner? This is the question that drives the narrative forward…. Read More

  • MASTERING MINECRAFT SURVIVOR CHALLENGE

    MASTERING MINECRAFT SURVIVOR CHALLENGE Minecraft Survivor Adventure: A Nostalgic Journey Embark on a challenging survival adventure in Minecraft 1.8 as the player returns to the old version of the game. This series focuses on playing pure Survivor mode without any mods, allowing players to reminisce about the old days of Minecraft. After a 7-year hiatus from the game, the player is back with a Turkish-language series guided by the viewers. It’s a fantastic nostalgia trip for those longing for the old Minecraft days! While occasional minor mods that do not affect the gameplay may be used, the main goal is to provide a… Read More

  • Free Fire Secrets Revealed – Dangerous Gameplay Zone 🔥🔥 #freefire

    Free Fire Secrets Revealed - Dangerous Gameplay Zone 🔥🔥 #freefireVideo Information This video, titled ‘Don’t Click On This Video ❌#freefire #shorts #short’, was uploaded by GAME_ZONE_CG on 2024-09-15 06:51:52. It has garnered 411 views and likes. The duration of the video is 00:00:17 or 17 seconds. Don’t Click On This Video ❌#freefire #shorts #short Welcome to GameZonecg YouTube Channel for Minecraft gameplay! Join our public SMP and showcase your creativity. Don’t forget to subscribe, like, and comment with your suggestions. Let’s build together! #Minecraft #GameZonecg #SMP Minecraft SMP Live : Public SMP For MCPE India Hey there, Get ready for some epic Minecraft gameplay on our public SMP. Show… Read More

  • Discover Angry Thomas in Secret Tunnel

    Discover Angry Thomas in Secret TunnelVideo Information This video, titled ‘Mikey & JJ found SECRET TUNNEL with Angry Thomas The Train Engine in Minecraft animations’, was uploaded by SCARY THOMAS PLAY on 2024-10-21 03:56:12. It has garnered 6216 views and 1011 likes. The duration of the video is 02:01:30 or 7290 seconds. Goodbye Dobermann & Labrador… Don’t Cry! Sad Story – Sheriff Labrador Police Animation #officerdobermann #sherifflabradoranimation #sherifflabrador Plot. Sheriff Labrador, Officer Dobermann and Sheriff Papillon aim at protecting the safety of the residents in Forest Town. They try to catch bad guys by using clever tools and tricks, and try to protect people against… Read More

  • EPIC GECKO GAMING SHOWDOWN!!

    EPIC GECKO GAMING SHOWDOWN!!Video Information This video, titled ‘Daquavis Playing Minecraft with dream | @DaquavisMC @dream #minecraft #minecraftmanhunt #dream’, was uploaded by GECKO GAMING on 2024-06-20 02:07:23. It has garnered 2365 views and likes. The duration of the video is 00:00:23 or 23 seconds. Daquavis Playing Minecraft with dream| @DaquavisMC @dream #minecraft #manhunt #cluch | daquavis video tags minecraft pvp legacy minecraft pvp dream smp pvp daquavis sharpness meme shorts trending dream vs daquavis pop minecrafters minecrafter minecraftpc minecraftmeme minecraftonly minecraftbuilds minecraftpe minecraftmemes edgy dankmeme games offensivememes edgymemes game gamer fortnite gaming lmao dank comedy memesdaily funnymemes youtube dankmemes tiktok bhfyp explorepage viral… Read More

  • Unbelievable Minecraft Duplication Glitches 1.21!

    Unbelievable Minecraft Duplication Glitches 1.21!Video Information This video, titled ‘ALL BEST DUPLICATION GLITCHES for 1.21 MINECRAFT BEDROCK Edition | REALMS & SERVERS’, was uploaded by by James on 2024-09-15 21:38:43. It has garnered 69236 views and 1519 likes. The duration of the video is 00:11:00 or 660 seconds. This minecraft bedrock 1.21 duplication glitch tutorial will show all best duplication glitches that are in the current 1.21 version of bedrock edition. ALL BEST DUPLICATION GLITCHES for 1.21 MINECRAFT BEDROCK Edition | REALMS & SERVERS This mcpe dupe tutorial is for all devices of Minecraft Bedrock, including minecraft ps4, minecraft xbox and minecraft mcpe! by… Read More

  • Insane New MCPE Add-On! 🔥 #MinecraftPE

    Insane New MCPE Add-On! 🔥 #MinecraftPEVideo Information This video, titled ‘Add-on MCPE 🔥 #addon #minecraft #mcpe #minecraftpe #addonmcpe #minecraftbedrock #mod #modmcpe’, was uploaded by JoeGames on 2024-02-29 05:00:29. It has garnered 538 views and 42 likes. The duration of the video is 00:00:35 or 35 seconds. Read More

  • Unbelievable: Watch me Defeat a Dragon in Minecraft!

    Unbelievable: Watch me Defeat a Dragon in Minecraft!Video Information This video, titled ‘Killing A Dragon! – Fantasy Minecraft – EP1’, was uploaded by Hugssy on 2024-02-07 15:00:28. It has garnered 2654 views and 57 likes. The duration of the video is 00:24:32 or 1472 seconds. Hey guys Hugssy here welcome to a new series that will hopefully be longer than 1 episode xD. I hope you guys enjoy it, there will be more of this to come in the future! Music Used “Alex Productions – Lands” is under a Creative Commons (CC BY 3.0) license. https://creativecommons.org/licenses/… / @alexproductionsnocopyright Music promoted by BreakingCopyright: • ⚗️ Medieval & Celtic… Read More

  • INSANE VR Adventure: 100 Days in Minecraft HARDCORE!

    INSANE VR Adventure: 100 Days in Minecraft HARDCORE!Video Information bugün gerçekçi Minecraft’ta hardcore serisine başlıyoruz ve gerçekçi minecraft’tan kastım sadece VR olması değil her şeyi elimle kırmam gerekecek yapacağım Kılıçlar için malzemeleri çalışma masasına tek tek dizmem gerekecek ve harika bir shader la oyunu gerçekten çok gerçekçi bir hale getireceğiz bu videoya katkılarından dolayı qi design’ın alabileceğiniz çok güzel aksesuarlara sahip K4 battery Head strap H4 Hello battery Head strap ve G4 Pro grips lii en son çıkan modelleri Bunlar hem Quest 3 hem de Quest 3S ile uyumlu çalışıyorlar bahsettiğim ürünlere ve çok daha fazlasına indirimli bir şekilde ulaşmak için açıklama linkindeki ve yorumlardaki linki kullanabilirsiniz… Read More

  • EPIC Villager BEDWARS TOURNAMENT in Minecraft! 😱

    EPIC Villager BEDWARS TOURNAMENT in Minecraft! 😱Video Information This video, titled ‘I Made a Villager BEDWARS TOURNAMENT in Minecraft’, was uploaded by Reff on 2024-09-18 18:00:16. It has garnered 133285 views and 3645 likes. The duration of the video is 00:10:08 or 608 seconds. I Made a Villager BEDWARS TOURNAMENT in Minecraft but it didn’t go as planned… JOIN MY DISCORD! https://discord.gg/Wk5hQkSW5d Follow me on: TikTok: https://www.tiktok.com/@reffmc Instagram: https://www.instagram.com/_reffmc/ Twitter: https://twitter.com/_reffmc #minecraft Read More

  • Unreal DADAyt117 HACKS – Free Fire, Anime, Minecraft! 🤯

    Unreal DADAyt117 HACKS - Free Fire, Anime, Minecraft! 🤯Video Information This video, titled ‘🥺🥺#free fire#authenticate #configurations #anime #minecraft #roblox🥺🥺’, was uploaded by DADAyt117 on 2024-10-05 15:52:01. It has garnered 151 views and 11 likes. The duration of the video is 00:00:38 or 38 seconds. Read More

  • Crafty Ship Tips: Minecraft Build Tutorial!

    Crafty Ship Tips: Minecraft Build Tutorial! In the world of Minecraft, where creativity thrives, Building a ship is where your skills will rise. Choose your design, from sailboat to pirate ship, Gather materials, let your imagination rip. Lay the foundation, with blocks in a curve, Build up the sides, let your ship’s shape swerve. Add decks and details, rooms for your crew, Smooth transitions, make your ship true. Create the sails, with wool in a triangle, Masts with fences, your ship will be magical. Final touches, rails and chests galore, Lighting with torches, your ship will soar. So dive into Minecraft, let your creativity flow,… Read More

  • Mod Madness: Illusion vs Logic 🔥😂 #minecraft

    Mod Madness: Illusion vs Logic 🔥😂 #minecraft When you’re trying to use logic in Minecraft but the game just hits you with illusions like “Why are you trying to make sense in a world where pigs can fly and zombies burst into flames in daylight?” 🤔🐷🔥 #minecraftlogic #mindblown Read More

  • Crafting Sword Art Online Town in Minecraft

    Crafting Sword Art Online Town in Minecraft Minecraft: Building Sword Art Online Town of Beginning In the world of Minecraft, players embark on an adventure in a procedurally generated, three-dimensional world filled with endless possibilities. The landscape is made up of “voxels,” allowing players to explore, mine raw materials, craft tools, and construct impressive structures. Exploration and Creativity One of the key features of Minecraft is the freedom it offers players to explore and create. From vast forests to deep caves, the world is yours to discover. With a wide range of materials at your disposal, you can let your imagination run wild and build anything… Read More

  • Mini Minecraft House: Bedroom, Kitchen, Rooftop Pool

    Mini Minecraft House: Bedroom, Kitchen, Rooftop Pool Welcome to the World of Magnet Minecraft! Are you ready to dive into the world of Magnet Minecraft? In this exciting DIY Miniature Minecraft House #5 video, you will witness the creation of a stunning bedroom, kitchen, and rooftop pool using magnetic blocks. Let’s explore the creativity and innovation that goes into building these miniature masterpieces! Building a Bedroom, Kitchen, and Rooftop Pool The video kicks off with an engaging intro showcasing the construction of a bedroom, kitchen, and rooftop pool from magnetic blocks. The intricate details and precision involved in creating these miniature structures are truly mesmerizing. From… Read More

  • 💥 EPIC Kaboomble Reactions in Animation vs. Minecraft Ep. 2-5! 💥

    💥 EPIC Kaboomble Reactions in Animation vs. Minecraft Ep. 2-5! 💥Video Information This video, titled ‘Animation vs. Minecraft Ep. 2-5!! Kaboomble Reaction’, was uploaded by Kaboomble on 2024-07-29 22:01:41. It has garnered 2424 views and 154 likes. The duration of the video is 00:20:23 or 1223 seconds. Animation vs. Minecraft Playlist: https://www.youtube.com/playlist?list=PLtLU9t8ptmcjDuLjtKdBkYB831PwRmT37 My Gaming channel: (Kaboomba) https://www.youtube.com/channel/UCLDsoqqctFJK5FrmXjuK_rw Read More

  • Uncharted: Minecraft Co-Op Survival

    Uncharted: Minecraft Co-Op SurvivalVideo Information This video, titled ‘A *New* World with FRIENDS | Minecraft Co-Op Multiplayer Survival | Uncharted Episode 1′, was uploaded by Jitterybug on 2024-03-06 00:03:01. It has garnered 1228 views and 91 likes. The duration of the video is 00:37:29 or 2249 seconds. Today I am playing some good ol’ classic minecraft survival with 3 of my good friends! We may throw some challenges at each other, or play some games, but we are just here to have fun, bring back the nostalgia of playing minecraft with your friends, bring you some joy and laughter. I hope you enjoy… Read More

  • 🔵 EPIC MINECRAFT SHOWDOWN – WHO WILL REIGN SUPREME? 🚀🔥

    🔵 EPIC MINECRAFT SHOWDOWN - WHO WILL REIGN SUPREME? 🚀🔥Video Information This video, titled ‘WHO WILL WIN 🔥 #minecraft #shorts #ytshorts #minecraftshorts’, was uploaded by BLUE GAMING on 2024-10-01 16:27:36. It has garnered 666 views and 23 likes. The duration of the video is 00:00:13 or 13 seconds. WHO WILL WIN 🔥 #minecraft #shorts #ytshorts #minecraftshorts Your queries minecraft, minecraft but, minecraft shorts, minecraft challenge, minecraft mod, minecraft seed, minecraft update, minecraft animation, minecraft how to, minecraft facts, minecraft memes, minecraft rarest, camman18 minecraft, minecraft speedrun, minecraft 1.20, minecraft but challenge, minecraft funny, minecraft tutorial, minecraft hardcore, minecraft survival, minecraft but i cant touch grass, minecraft live, minecraft tips,… Read More

  • Ultimate Minecraft Challenge: Surviving GX3!

    Ultimate Minecraft Challenge: Surviving GX3!Video Information This video, titled ‘Surviving Minecraft’s Lost Dimension’, was uploaded by GX3 on 2024-10-14 15:01:03. It has garnered 718 views and 11 likes. The duration of the video is 00:06:46 or 406 seconds. In this video I survive Minecraft’s Lost Dimension. I know this video is a little low quality but i needed to make something to be able to make more videos. I hope this is enjoyable and while your at it please subscribe! Subscribe – https://www.youtube.com/@GX3_333/videos?sub_confirmation=1 #minecraft #minecraftindev #trending #minecraftsurvival Read More

  • Daraku Returns in AremMC! | Minecraft Madness

    Daraku Returns in AremMC! | Minecraft MadnessVideo Information This video, titled ‘El Regreso de Daraku #minecraft #arem #aremmc’, was uploaded by AremMC on 2024-04-23 00:03:56. It has garnered 9244 views and 644 likes. The duration of the video is 00:00:16 or 16 seconds. Read More

  • AG LIVE: Insane Mobs! #Minecraft_EditMadness 🤯

    AG LIVE: Insane Mobs! #Minecraft_EditMadness 🤯Video Information This video, titled ‘Best Mobs Edit ☠️ #edit #minecraft #princedheo #phonk’, was uploaded by AG LIVE – R on 2024-08-24 11:33:19. It has garnered 40701 views and 732 likes. The duration of the video is 00:00:10 or 10 seconds. Read More

  • 🔥BIHARI NINJA TAKES ON MAGICAL FOREST

    🔥BIHARI NINJA TAKES ON MAGICAL FORESTVideo Information This video, titled ‘🔴MINECRAFT |☀️DAY 3 | JOIN OUR 🌠🪄Magical World Twilight🌲🌳 Forest !!’, was uploaded by BIHARI NINJA on 2024-08-16 13:30:42. It has garnered 38 views and 7 likes. The duration of the video is 03:37:48 or 13068 seconds. HELLO, Viewers I am your gamer boy Ninja And Welcome To My YouTube Channel. About This Video- 🔴MINECRAFT |☀️NEW DAY I AM BACK BUILD ✨DREAM🏡HOUSE || #minecraft #biharininja #trending #tranding #treanding #viral #livestream #stream FOLLOW ME 🤣💥✔🤳💚🤙🔥 TWITTER = @BihariNinja TWITCH = bihari_ninja_live DISCORD 📞 https://discord.gg/w79eU5Bu ABOUT THE GAME 🧐🧐🧐🧐🧐🧐🧐🧐🧐🧐🧐 Minecraft is a massively popular sandbox video game… Read More

  • ULTIMATE PVP RP TIPS ON FUNTIME SERVER!

    ULTIMATE PVP RP TIPS ON FUNTIME SERVER!Video Information This video, titled ‘FunTime / СЛИВ ЛУЧШИХ РП ДЛЯ ПВП НА ФАНТАЙМ /’, was uploaded by Fl1knaY666 on 2024-07-31 16:44:52. It has garnered 449 views and 19 likes. The duration of the video is 00:01:58 or 118 seconds. ds-mynameintlex ALL RP ARE IN COMA!!! prostocraft, prostocraft, anarchy, minecraft, minecraft, minecraft anarchy, anarchy, pvp anarchy, pvp on anarchy, anarchy prostocraft, pvp, danqo16, pvp, anarchy pvp, prostocraft anarchy, anarchy from scratch, byttcehb, anarchy minecraft, a lot of pvp on anarchy , prostik, a lot of pvp, mrirbbi, jetmine, anarchy without donation, jetmine, dape, vupsen anarchy, vupsen pvp, wellmore, vupsen, uhk,… Read More

  • Insane Birthday Tune x3 – Anime Minecraft Madness!

    Insane Birthday Tune x3 - Anime Minecraft Madness!Video Information This video, titled ‘birthday tune #anime #minecraft #onepunchmanedit’, was uploaded by Devil x3 on 2024-08-26 12:00:32. It has garnered 532 views and 10 likes. The duration of the video is 00:00:12 or 12 seconds. Read More