Тёмный

Hiding in Closets - Doors Tutorial #6 

GnomeCode
Подписаться 115 тыс.
Просмотров 70 тыс.
50% 1

Опубликовано:

 

27 окт 2024

Поделиться:

Ссылка:

Скачать:

Готовим ссылку...

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 375   
@KevScripts
@KevScripts 10 месяцев назад
I been trying to script for the past 7 years and i really just lose motivation but your series has motivated me enough to atleast get decent at scripting and now I have created 3 projects which have had over 100k visits!
@ColRealPro
@ColRealPro Год назад
As a scripter, I just watch these cause they are entertaining and I love how easy it is for beginners to understand this
@halalouis3814
@halalouis3814 Год назад
same
@Gary_Pyles
@Gary_Pyles Год назад
I’m a beginner, but I just watch these when I’m bored, because it doesn’t really work for me.
@PonkoKnight
@PonkoKnight Год назад
These tutorials just keep getting better and better. I still think back to the teddy series and see that you've improved alot over that time, not just in scripting but also in the editing of the videos. Keep up the great work.
@GnomeCode
@GnomeCode Год назад
Thank you! That's what I love about making these series, both me and my followers can grow and improve together
@godzil7
@godzil7 Год назад
@@GnomeCode i need help my furniture wont generate after i did the open script where it moves out of the main room thing
@godzil7
@godzil7 Год назад
@@GnomeCode i mean my rooms wont generate
@godzil7
@godzil7 Год назад
@GoodBrainSalad* my furniture open script isnt generating rooms
@DuolingoExtra
@DuolingoExtra Год назад
@@godzil7 Can you paste your code here and what does says in output?
@koainanis5840
@koainanis5840 Год назад
GnomeCode was one of my first roblox RU-vidr and i love him because he have a nice and clear voice. and he explain all very clear ! I learned so much from all of his videos ! Thank you GnomeCode for you hard work ! Give him all your support !
@Astrik62
@Astrik62 Год назад
i love that you're trying your best to make videos quickly. Keep up the good work!
@legotrex
@legotrex Год назад
Even tho I’m not making a doors type game, these videos are always so helpful!
@theoutlaw9759
@theoutlaw9759 Год назад
I love how GnomeCode releases his videos so quickly! Thanks, I've really learned a lot from this series so far!
@GnomeCode
@GnomeCode Год назад
Thanks for the good vibes!
@fyregaming4396
@fyregaming4396 Год назад
yea, quickly...
@BaconBoyVN1234
@BaconBoyVN1234 Год назад
quickly *literally the part 5 was release in 8 days ago.*
@michaelmartins6132
@michaelmartins6132 Год назад
@@BaconBoyVN1234 8 days is rather quick
@BaconBoyVN1234
@BaconBoyVN1234 Год назад
@@michaelmartins6132 no
@Morale72
@Morale72 Год назад
Please make more of these they are so fun as little projects to do, I also am using them to learn scripting because I find it easier to learn while making a game and not while learning specific functions
@heitorrauberscussiato1110
@heitorrauberscussiato1110 Год назад
Im so happy that this series have went so far!!!
@zLeqitCxde
@zLeqitCxde Год назад
you are so talented! I've been watching you since the 2d series and always come to you when I need help with something. Great work, keep it up! Ps: Road to 100k!!
@GnomeCode
@GnomeCode Год назад
Wow that's a long time ago! Thanks for sticking around
@zLeqitCxde
@zLeqitCxde Год назад
@@GnomeCode you're awesome!
@block_in_animating
@block_in_animating Год назад
Probably in the 8th episode, you could make 'dark rooms' and maybe 'spiders in drawers'. Basically rooms have a BoolValue in them called DarkRoom, and every room there is a chance for it to be true or false. If its true, all lights are off. If its false, all lights are on. Spider explanation: Drawers have a bool value too called SpiderInside, for every drawer spawned, there is a chance for it to be true or false. If its true, there is a spider model inside that jumps to your head because you may make an attachment on the face that you made (instance . new) If its false, no spiders of course.
@Pseudoalone2
@Pseudoalone2 21 день назад
i may add that in my game too, cause everyone has arachnophobia :3
@pagodeando5880
@pagodeando5880 Год назад
bro i love this serie so much thanks for this serie i love you!
@ProdByVRNE
@ProdByVRNE Год назад
Finally, you dont know how long ive been trying to find a tutorial like this. Thanks.
@Neural_Fiction
@Neural_Fiction Год назад
I'm very excited to see you script the monster next episode. Will you also add a time limit before you die while you're in one of the closets from doors?
@mrscienceguy5817
@mrscienceguy5817 Год назад
So cool cant wait for the pad lock puzzle part which is in door 50 😅
@dQw4w9WgXcQab
@dQw4w9WgXcQab Год назад
Please do more of these tutorials, not only is this improving my scripting skills, but it also helps me create a dream fan game. Keep up the awesome work!
@AMAZONMANGAMING
@AMAZONMANGAMING Год назад
same
@IDI_NULL
@IDI_NULL Год назад
i cannot thank you enough for these tutorials. I actually now feel like I will make a good game for once. None of the other tutorials i tried worked, but yours is the only one that did!(im actually being honest here ;-;) but theres just one tiny problem. entering the closet works, everything works, its fine. but the problem is when im entering and leaving, only the left door does the tweening animation, the right door is just frozen. did i make a typo or smth? also heres my closet script for anyone that wants it: local TweenService = game:GetService("TweenService") local ReplicatedStorage = game:GetService("ReplicatedStorage") local events = ReplicatedStorage:WaitForChild("Events") local moveCamEvent = events:WaitForChild("MoveCam") local closet = {} function closet.MoveHinge(hinge, direction) local openAngle = -110 local goalCFrame = hinge.CFrame *CFrame.Angles(0, math.rad(openAngle*direction), 0) local doorTween = TweenService:Create(hinge, TweenInfo.new(0.5),{CFrame=goalCFrame}) doorTween:Play() end function closet.MoveDoors(model, direction) model.Primary.Open:Play() closet.MoveHinge(model.LeftHinge, 1 *direction) closet.MoveHinge(model.RightHinge, -1 *direction) task.wait(0.5) end function closet.PlayerLeave(player, model) local character = player.Character if not character then return end closet.MoveDoors(model, 1) character:PivotTo(model.Outside.CFrame * CFrame.Angles(0, math.rad(180), 0)) character.Humanoid.WalkSpeed = 16 character.Humanoid.JumpPower = 0 closet.MoveDoors(model, -1) model.hasPlayer.Value = nil end function closet.PlayerEnter(player, model) local character = player.Character if not character then return end model.hasPlayer.Value = player character.Humanoid.WalkSpeed = 0 character.Humanoid.JumpPower = 0 character:PivotTo(model.Outside.CFrame) moveCamEvent:FireClient(player, model.Outside.CFrame) closet.MoveDoors(model, 1) character:PivotTo(model.Inside.CFrame) moveCamEvent:FireClient(player, model.Inside.CFrame) closet.MoveDoors(model, -1) end function closet.New(template) local model = workspace.Furniture.Closet:Clone() model:PivotTo(template.CFrame) model.Parent = template.Parent local hasPlayer = Instance.new("ObjectValue") hasPlayer.Name = "hasPlayer" hasPlayer.Parent = model local outsidePrompt = Instance.new("ProximityPrompt") outsidePrompt.ActionText = "Enter Closet" outsidePrompt.MaxActivationDistance = 5 outsidePrompt.Parent = model.Outside local insidePrompt = outsidePrompt:Clone() insidePrompt.ActionText = "Leave Closet" insidePrompt.MaxActivationDistance = 2 insidePrompt.Parent = model.InsidePrompt outsidePrompt.Triggered:Connect(function(player) if hasPlayer.Value == nil then outsidePrompt.Enabled = false closet.PlayerEnter(player, model) end end) insidePrompt.Triggered:Connect(function(player) if hasPlayer.Value == player then insidePrompt.Enabled = false closet.PlayerLeave(player, model) insidePrompt.Enabled = true outsidePrompt.Enabled = true end end) template:Destroy() end return closet
@turtle1658
@turtle1658 Год назад
wow I din't expect this to be so quick! keep up the amazing work gnomecode I see you are working very very hard
@noob_4_ever
@noob_4_ever Год назад
Hi! Can you publish the game like you did with the others? I really want to play it and add things. You make great tutorials and you are the only one that makes understandable tutorials!
@Jarate_expert
@Jarate_expert Год назад
he cannot publish the game and if you ask why then think about it
@pattyradio
@pattyradio Год назад
I love your tutorials! I've been using this tutorial so far to create a similar to doors game but without enemies and more exploration/badge based. I would love it if you could have certain rooms spawn at certain numbers? (like room 50 and 100 in doors)
@JandAVideoGames
@JandAVideoGames Год назад
Also for the room generation it only spawns in rooms you are close to and the other rooms 7 doors back get destroyed this will help prevent lag when the you start adding more functionality to the game
@grayanddevpdx
@grayanddevpdx Год назад
I love how the start room is still a grey box, but now it’s a slightly more polished grey box.
@ThePaleoZoo14
@ThePaleoZoo14 Год назад
I'm gonna try and make a game like doors and ill definitely use this tutorial to help me! Keep up the good work Gnomecode!
@CorruptPVP
@CorruptPVP Год назад
what i would love next would be a game teleporter system like doors has, that would be very useful for my game! also will there be a cutscene tutorial later?
@DeTotally
@DeTotally Год назад
Best episode so far! Can't wait for monsters to come :)
@randomhasfwens
@randomhasfwens Год назад
If you wanna add a exit and enter sound do this: Under the PlayerEnter, do model.Primary.(Your Enter Sound):Play() And then under the PlayerLeave, do model.Primary.(Your Exit Sound):Play()
@TheMaxGuy
@TheMaxGuy Год назад
he literally did that in the video
@randomhasfwens
@randomhasfwens Год назад
@@TheMaxGuy he didnt
@notmix479
@notmix479 20 дней назад
@@randomhasfwens 28:00
@randomhasfwens
@randomhasfwens 20 дней назад
@@notmix479 ur late-
@notmix479
@notmix479 20 дней назад
@@randomhasfwens ik
@Player-te2xf
@Player-te2xf Год назад
Thank you so much GnomeCode :D. I don't play doors but, I always watch your new series videos because they are interesting to see how you've improved since your first series, like a lot you've gotten better at coding, editing videos, and interesting. I hope you continue to make series :D
@breadlordzz
@breadlordzz Год назад
the way you made the closet is way more complicated than how they made it because it was made as a animation in doors
@bduber274
@bduber274 Год назад
Can you do an episode on the monsters? I love this series
@pizzabro_gaming3092
@pizzabro_gaming3092 Год назад
Gnome code! Thanks for being there to teach me how to script! I have also been following the tower defense series as ive been following this one! You make these tutorials simple and easy! You even show common mistakes most people would make! Thanks for your help Gnome code! (edit) HURRY UP WITH THE NEXT EPISODE PLZ! (EDIT 2.0) GNOME CODE PLEASE HURRY ITS OVER A WEEK SINCE THIS EPISODEEEEE...
@stefan_-yc4zs
@stefan_-yc4zs Год назад
You have something miss to make in tower defense game 1: make skins for towers and crates in shop and equit skin or unequit skin 2:adding seasons, events 3: the slots of towers if you equit a tower to show the towers on the slot to know what tower you equit 4: vote modes 5: show random maps to vote it and the start button to start istant 6: change button to change the maps to vote 7: the finnaly boss hp bar 8: in menu on shop to show the first lvl tower stats 9: music at menu and the finnal boss music 10: died enemys sounds 11: tower shot effect 12: the shot hit zombie effect 13: show on the tower total damage and total money spend on it 14: making enemy than stun towers for seconds 15: the died finnaly boss animation
@DarkrunnerGames
@DarkrunnerGames Год назад
These tutorials are awesome! I wasn't even expecting a tutorial today! and also your my favourite Roblox scripting youtuber! I'm glad your doing a tutorial on doors and I can't wait until next episode for the entities!
@itsnamehere
@itsnamehere Год назад
Gnome thank you so much for making this series! I've quickly learned a lot, and we're just getting started!
@FireFonce
@FireFonce Год назад
Gnome code is the best code explainer no cap
@Alexis-pf7mf
@Alexis-pf7mf 5 месяцев назад
I have an idea for the next part!, itll be basically just the crouching and vents since i really want to do rooms where you need to find the vent to go to the other section in the room then leading u to de exit
@Yu-Gi-Oh36508
@Yu-Gi-Oh36508 Год назад
you should do a video on how to let the code know which door you are on and delete old doors and only gen a few doors ahead
@thatoneavgeek_1
@thatoneavgeek_1 Месяц назад
love your channel! thanks!
@addisonrowe7403
@addisonrowe7403 Год назад
Yess gnomecode can't wait for the Teddy chase haha or will or be a new character like that easter akin from Teddy 🐻
@Ausar_The_Vile
@Ausar_The_Vile Год назад
me when lights flicker irl:
@-nik._
@-nik._ Год назад
@Neptune Damn it! My lights flickered! Now a hurricane is about is appear 😔😔😔😔
@OFFICERZILOR
@OFFICERZILOR Год назад
@Neptune but I live in ohio😔
@OFFICERZILOR
@OFFICERZILOR Год назад
@Neptune there is hurricane and black flying monsters at my trashcan! Thank you for saying that hurricanei is coming
@seth8270
@seth8270 Год назад
@Neptune wut about Ohio
@seth8270
@seth8270 Год назад
@Neptune Noice name
@ДаСогласен-щ8ъ
@ДаСогласен-щ8ъ Год назад
now you can make rush, but please make to he spawns every 9-14 rooms like original
@mcjulio1
@mcjulio1 Год назад
Hey GnomeCode!, The next video will you start making the monsters?
@Lem793
@Lem793 Год назад
Hey Gnome Code, I am having some issues and need your help. So uh, I have done exactly like the video, but for some reason, the closet doesn't have the Promoxity Prompt,also I don't want to have the furniture in part 4. Is that the reason the scripts don't work?
@klauscraftgames
@klauscraftgames 7 дней назад
me too
@Antiwall_Dev
@Antiwall_Dev Год назад
I love you GnomeCode i joined your discord and i wished that i can boost the server
@crepay35
@crepay35 Год назад
It’s unbelievable how fast gnomecode is rapidly making these tutorial videos, amazing work gnomecode!
@robinpaul8343
@robinpaul8343 Год назад
Yay ! A other video of Gnome Code !!! :D
@candykid44
@candykid44 Год назад
Gnome, quick! Get in the closet before all the angry 10 year olds find you because their code doesn't work!
@sebalby34
@sebalby34 Год назад
your name is literally candy kid
@rosellequinto171
@rosellequinto171 Год назад
i am a 10 year old and my code works.
@Dusty2763
@Dusty2763 Год назад
Good job yet again Gnomecode!
@GnomeCode
@GnomeCode Год назад
Cheers Dusty
@JChillz_
@JChillz_ Год назад
Awesome content, Also you should make more (How to scrpt tutorials)👍
@Zirash4
@Zirash4 Год назад
Even if for some reason my doors wont open, i still watch each episode
@LeftyWithPuppetEditz
@LeftyWithPuppetEditz Год назад
My closet won’t open even tho I watched his tutorials
@arch2300
@arch2300 Год назад
btw if you want an authentic doors game with this then make a script to lock the camera into first person and make it so they can't jump
@cub0id
@cub0id Год назад
I don't even follow the tutorials I just watch them cuz I learn stuff I never knew before lol
@dawt838
@dawt838 Год назад
average gnome code W
@The_Observer_ENR
@The_Observer_ENR Год назад
Can't Wait for the Monster's Soon also I watched this 6 day's ago
@PumpyGT
@PumpyGT Год назад
Congrats on the 70k
@GnomeCode
@GnomeCode Год назад
Thanks Ham
@arch2300
@arch2300 Год назад
I'm making a Doors fan-game and these tutorials have been a big help Edit: wait so is part 7 making an entity like rush or ambush?
@ItzJustTeam
@ItzJustTeam Год назад
he said so. if he made closets, then said the next episode is about making a monster... well then we know which one
@Baill8778
@Baill8778 Год назад
you can also use tweenservice to teleport player to closet, and looks doors
@squishysnowball44
@squishysnowball44 Год назад
btw if you can still jump in the closet try putting "Character.Humanoid.JumpHeight = 0" then see if it works.
@friendlytoast8636
@friendlytoast8636 Год назад
thanks!
@jdoggamez
@jdoggamez Год назад
on line 12 I got this error; "attempt to perform arithmetic (mul) on number and Instance" please help Gnome Code!
@remove_youtube_ads1213
@remove_youtube_ads1213 Год назад
Make sure that closet.MoveDoors(model, 1) and closet.MoveDoors(model, -1) IS with the DOT . and NOT with the :
@Davidouuu23
@Davidouuu23 Год назад
One fix you need to do: when you spam the closet doors it glitches and they stay opened... Anyways really good video!
@vincentgamingyt4118
@vincentgamingyt4118 Год назад
I have to take a break as soon I finish the part Well… I will wait for the next part
@actblox4591
@actblox4591 Год назад
i still didn't watched the full tutorial, but if he didn't talk about the glitch where if you leave the closed right after entering the door glitches, to fix it just make the outside prompt hold duration 0.6, since the inside prompt is a copy of the outside prompt you don't need to change it
@ingabusa
@ingabusa Год назад
I think your doors is way better than real roblox doors good job :)
@LolTheOof123
@LolTheOof123 Год назад
I can hear gnomecode typing and his room😂
@IKZombiee
@IKZombiee Год назад
Is there a way I can Just make the Hiding in closets without needing the past Modules and templates you made with all the other furniture :) It would help alot but love your videos !
@Luca_Smirea
@Luca_Smirea Год назад
You should try to make rooms fangame tutorial
@Mikeygaming0041
@Mikeygaming0041 29 дней назад
If you wanna make a rooms fangame, Aiohwa made one
@Luca_Smirea
@Luca_Smirea 29 дней назад
@@Mikeygaming0041 ok well, you're late, I am making a rooms fangame, i'm skilled at scripting, so there's no need for a tutorial heh, by the way, I only wrote this for my friend, at the time I wrote the comment I didn't have a computer, my friend did, but now I do.
@GoodyOliver
@GoodyOliver Год назад
cant wait for the entitys!
@neighboringconquerers
@neighboringconquerers Год назад
Nice, I wonder when monsters will be made
@itskingboygaming
@itskingboygaming Год назад
The best tutorial
@Mikeygaming0041
@Mikeygaming0041 29 дней назад
I have a little problem, so basically when the closet animation plays, it shows 2 more doors inside the closet while the other 2 are moving, also my camera instantly jerks me to face the inside of the closet instead of the doors. if anyone could help it would be nice.
@Mikeygaming0041
@Mikeygaming0041 29 дней назад
Nevermind! the first problem only happens with one closet in each room I suppose, and the 2nd one was an easy fix, I had to move a line , lol
@GreatRamilYT
@GreatRamilYT Год назад
cool closets!!! we waiting new video =))) thank you for cool content!
@GnomeCode
@GnomeCode Год назад
Glad you like them!
@DroideYT
@DroideYT Год назад
wabut dangerous if the player enters the closet and kills himself, then the value is bugged or also if he leaves the game
@kriskrossappelsauz
@kriskrossappelsauz Год назад
Disable reset button
@DevLazl
@DevLazl Год назад
BEST VIDEO EVER U THE BEST GNOME
@GnomeCode
@GnomeCode Год назад
Thank you DevLazl!
@bonepsr2355
@bonepsr2355 Год назад
Keep the good work!
@RandomidiotalsoE
@RandomidiotalsoE Год назад
Can someone please help me? I can’t get in the closet I’m at 14:08 there is no errors what do I do? Edit: nvm I was just being stupid and forgot to anchor the inside and outside parts 😅
@alejandrorivera9694
@alejandrorivera9694 Год назад
Thank you so much for this things!!
@disrespecc9678
@disrespecc9678 Год назад
When is the episode for Rush/Ambush or Halt like monsters?
@spngrg99
@spngrg99 Год назад
Hey codingableGnome, My prompt ain't appearing, what do i do?
@guigomescarvalho6843
@guigomescarvalho6843 Год назад
hey im watching the tower defence game tutorial and my animations aren't working im thinking that is the animationFolder part because i dont have one and if i had where do i put it in? also do i put the walk inside it? edit: there is a bunch of people with the same problem on the episode 3 idk if they already solved it
@fexryourfriend
@fexryourfriend Год назад
Hi GnomeCode! I want to ask a question. Will there be r o o m d e s p a w n i n g ?
@iemie7070
@iemie7070 Год назад
this is helpful, but how about you put a link for a model in the desc for the people that are just too lazy to write the script nad just want the model?
@MrGaming-h1n
@MrGaming-h1n Год назад
The proxsimty pro pt is not working :(
@7870javier
@7870javier Год назад
Hey GnomeCode, I was wondering if the next tutorial could be how to make custom rooms like door 50, door 100, are not in the rooms folder basicly like how to make door 100 as a stage thats not in the rooms folder can you?
@FireFonce
@FireFonce Год назад
Gnome Code do u know how i could i make like when u enter the closet ur camera rotates like doors, could u give me an example script please. Edit: i hope he answers :(
@Gooseyplayz
@Gooseyplayz 11 дней назад
He never did:(
@saqqqqqq
@saqqqqqq Год назад
finally, entity time
@AstroNomical_Nova
@AstroNomical_Nova Год назад
There's a problem i've been having since part 1. My room generationis not generating 100 rooms. Instead it generates a random amount.
@hakuruyu
@hakuruyu 18 дней назад
are you sure you didn't put a math.random() in your server script?
@AstroNomical_Nova
@AstroNomical_Nova 18 дней назад
@@hakuruyu oh i fixed it a while ago but thank you
@kauesun-roblox4265
@kauesun-roblox4265 Год назад
Hey gnome if you see this, at the complex room generation video, theres an error for me that says "Attempt to index nil with 'Direction'" and it just randomly generates the amount of rooms instead of the amount of rooms that i put on the server script (example: 15 rooms to generate but generated 2) and im not the only person who has this problem, look at the recent comments on the complex generation video. So if you have time, then could you please help?
@theguynamedberry9270
@theguynamedberry9270 Год назад
Your closet is bugged.
@sebalby34
@sebalby34 Год назад
cool video! just wondering how can i make the player have the press W to get out like in the real game instead of another prompt?
@KingCerviux
@KingCerviux Год назад
I haven't watched all of the videos yet, but do you remove the rooms behind you at a certain point? For example, there will always been 2 rooms behind you and 1 room infront of you at each given time, and the room you're currently in.
@TheWalkingTNT
@TheWalkingTNT Год назад
Good evening GnomeCode
@Rendelity
@Rendelity Год назад
Your tutorials are the best I've seen on youtube! you helped me a lot with the tutorials on "how to make a game like DOORS" GnomeCode. PS: good luck with the next videos
@Rendelity
@Rendelity Год назад
when will the new chapter come out? I need to make entities like Jack, Rush, Seek, Ambush and Figure
@JOSUETUBER08
@JOSUETUBER08 Год назад
How i can make a custom ProximityPrompt Gui?
@GigaGnome
@GigaGnome Год назад
cabinets in teddy when? Great vid tho
@bensontheredengine926
@bensontheredengine926 Год назад
Will you add some entity like rush ambush figure seek glitch hide eyes halt Timothy jack A-60 and shadow?
@snipeshot7822
@snipeshot7822 Год назад
dark rooms when?
@GamerlazaMPGandBuffaGaming
@GamerlazaMPGandBuffaGaming Год назад
Yesss babby
@JamesNJoe
@JamesNJoe Год назад
will you add an animation in the next video (if its a monster like rush, ambush, screech, e.t.c)
@Arbolez
@Arbolez Год назад
hey gnome code i wanted to ask you to make a tutorial on how to make a Randomly Generated Droids type game
@plastibonic
@plastibonic Год назад
gnome, my door opens the opposite way but the code is exactly the same, even the orientation of the hinge, can you help? edit: nvm i figured it out i put (0,5) instead of (0.5)
@goofyahprofile8474
@goofyahprofile8474 Год назад
You forgot to add the monster hide which kicks the player out of the closet for staying in it for too long!
@NyghtCorn
@NyghtCorn Год назад
💀dude
@goofyahprofile8474
@goofyahprofile8474 Год назад
@@NyghtCorn 💀 what dude
@arch2300
@arch2300 Год назад
he probably will
@NyghtCorn
@NyghtCorn Год назад
@@arch2300 ye but prob late in the series
@goofyahprofile8474
@goofyahprofile8474 Год назад
@@arch2300 maybe
Далее
Making Rush Monster AI - Doors Tutorial #7
54:26
Просмотров 147 тыс.
How to make Roblox Furniture - Doors Tutorial #4
25:20
진 (Jin) 'I'll Be There' Official MV
03:15
Просмотров 9 млн
Minecraft images but it's NOOOOOOOOOOOOOOOOOO...
9:10
Can 6 DEVS Make a HORROR Game Without Communicating?
9:55
How I Made a 3D Platformer in 2D Game Engine
21:23
Просмотров 529 тыс.
Testing illegal Minecart rail techniques
11:25
Просмотров 263 тыс.
I Made 6 New Dash Orbs In Geometry Dash 2.2!
11:00
Просмотров 58 тыс.
The Most Impressive Scratch Projects
11:00
Просмотров 5 млн
Nicorocks Is Remaking the Rooms
8:03
Просмотров 39 тыс.
Specific Rooms & Dynamic Loading - Doors Tutorial #8
15:30