How to make a Rooms Fangame

แชร์
ฝัง
  • เผยแพร่เมื่อ 29 ต.ค. 2024

ความคิดเห็น • 605

  • @aiohwa
    @aiohwa  8 หลายเดือนก่อน +41

    as a sidenote play my rooms fangame here (its good btw) www.roblox.com/games/13396378249/THE-PERPETUAL-ROOMS-RENOVATION-UPDATE
    this is so much better!!!!!!
    also, people told me past 7:55 the subtitles are covering the code so here is just the full code for the "Room_Generation" script in serverscriptservice
    local Rooms = game.ServerStorage.Rooms
    local DoorNum = game.ReplicatedStorage.DoorNumber
    local LatestRoom = game.ReplicatedStorage.LatestRoom
    local StartRoom = game.ReplicatedStorage.StartRoom
    local Door_Event = game.ReplicatedStorage.Door_Open
    local function Generate()
    local NewRoom = Rooms:GetChildren()[math.random(1, #Rooms:GetChildren())]:Clone()
    local Text = NewRoom.label.SurfaceGui.TextLabel

    if DoorNum.Value < 10 then
    Text.Text = "A-00".. DoorNum.Value
    elseif DoorNum.Value < 100 then
    Text.Text = "A-0".. DoorNum.Value
    elseif DoorNum.Value < 1000 then
    Text.Text = "A-".. DoorNum.Value
    end

    NewRoom:PivotTo(LatestRoom.Value.exit.CFrame)
    NewRoom.Parent = workspace.Generated
    LatestRoom.Value = NewRoom
    end
    Door_Event.Event:Connect(function()
    DoorNum.Value += 1
    Generate()
    end)
    (it took me 2 hours to make this video 😭🙏)

    • @Vicadecool
      @Vicadecool 8 หลายเดือนก่อน +1

      WERE BACK!!!1!1!1!!!!!!!1!1!1!

    • @obywateljulo3436
      @obywateljulo3436 8 หลายเดือนก่อน +1

      can you make this as a um kit plz :3

    • @yoboyjoshua1
      @yoboyjoshua1 8 หลายเดือนก่อน

      @@obywateljulo3436 dude u already got the code, just do it. No need for a kit.

    • @mathiasgameplays6036
      @mathiasgameplays6036 8 หลายเดือนก่อน

      @@obywateljulo3436learn how to script

    • @aiohwa
      @aiohwa  8 หลายเดือนก่อน +1

      @@obywateljulo3436 no im not making it as a kit when i made my stuff in models people just stole it and reuploaded it

  • @iDoStuff16
    @iDoStuff16 8 หลายเดือนก่อน +18

    the memories are flooding back

    • @ImStubid385
      @ImStubid385 6 หลายเดือนก่อน +1

      gd reference real

    • @kudrex3901
      @kudrex3901 3 หลายเดือนก่อน +1

      @@ImStubid385 FOCUS

  • @chrisrodriguezm13
    @chrisrodriguezm13 7 หลายเดือนก่อน +5

    Thanks, now I can make X’s Rooms: Recoded with this

  • @Hurricane_Activity
    @Hurricane_Activity 8 หลายเดือนก่อน +3

    this will really stop people saying “you can’t code”

    • @aiohwa
      @aiohwa  8 หลายเดือนก่อน +3

      yea some tean fans say i cant code when i can code better than them lmfao

    • @Hurricane_Activity
      @Hurricane_Activity 8 หลายเดือนก่อน +1

      @@aiohwa just show that you can code and their faces will be priceless 💀

    • @aiohwa
      @aiohwa  8 หลายเดือนก่อน +2

      @@Hurricane_Activity they already know i code well they just mad as hell lol

    • @Hurricane_Activity
      @Hurricane_Activity 8 หลายเดือนก่อน +1

      @@aiohwa XD

    • @monasanchez6892
      @monasanchez6892 4 หลายเดือนก่อน

      @@aiohwa 8:47 The subtitles were covering what you were typing, can you tell me what it was?

  • @miriamgonzalez2675
    @miriamgonzalez2675 7 หลายเดือนก่อน +8

    The door broke and i cant figure out what broke, everything is spelled correct. Can you comment me all the code please?

  • @yankoyankov-fx8pb
    @yankoyankov-fx8pb 8 หลายเดือนก่อน +6

    bro put limbo music to make us F O C U S

  • @EterSky08
    @EterSky08 8 หลายเดือนก่อน +6

    Hey, i'm having an issue where "exit" and "entrance" are not being cloned to the Generated Rooms
    I also have an issue where some of my rooms spawn sideways to the left

    • @SmilerRiot
      @SmilerRiot 7 หลายเดือนก่อน +1

      Try typing this script in: NewRoom.PrimaryPart = NewRoom.Entrance. This script basically sets the NewRoom's primary part as the entrance so the entrance can pivot to the exit, this will help your rooms be aligned and not messy. Also check if your exit or entrance is anchored because if it is not, the script cannot work correctly.

    • @BUKOYAY
      @BUKOYAY หลายเดือนก่อน

      same but mine is generating in the start room

  • @Untitled_Gaming_Channel
    @Untitled_Gaming_Channel 7 หลายเดือนก่อน +2

    Bruh the song is fire when you play it at 0.5x speed

  • @Hazenrdpk2612
    @Hazenrdpk2612 7 หลายเดือนก่อน +6

    BRO WHY WONT PEOPLE TELL WHICH CFRAME DOES THE PART HAS TO FACE. THAT MAKES IT COMPLICATED TO MAKE ROOMS GENERATED.

    • @Hazenrdpk2612
      @Hazenrdpk2612 6 หลายเดือนก่อน +1

      Nvm I found out lol

    • @e4p614
      @e4p614 5 หลายเดือนก่อน

      @@Hazenrdpk2612 how?

    • @Hazenrdpk2612
      @Hazenrdpk2612 5 หลายเดือนก่อน +1

      @@e4p614 make sure the cframe is positioned correctly.

  • @Marshy_The_Memer
    @Marshy_The_Memer 28 วันที่ผ่านมา +1

    Hey so when I put in "local game.ReplicatedStorage.Door_Open:Fire()" It said that the 2 dots were code errors. And so far everything was working fine. Could you tell me a possible way to fix it please? Or is it just a skill issue?

  • @SmilerRiot
    @SmilerRiot 7 หลายเดือนก่อน +9

    EDIT: THE EXIT PART WAS UNANCHORED SO THAT'S WHY THAT ERROR WAS HAPPENING. Also good tutorial
    For some reason, I was opening doors which generated 1 room as usual but, when I open a few doors, the rooms stopped generating. In the output, it says that “Exit is not a valid member of this room” but I literally have the exit in the room and there is no typos.

    • @Bertrayo
      @Bertrayo 6 หลายเดือนก่อน +1

      could you help me? ik you didnt make the video and might not know how to fix but nobody is responding.
      basically, rooms arent generating at all. pls help if you can

    • @SmilerRiot
      @SmilerRiot 6 หลายเดือนก่อน +1

      @@Bertrayo Try checking for any typos and set the primary part of a room to the “entrance” model

    • @Bertrayo
      @Bertrayo 6 หลายเดือนก่อน

      @@SmilerRiot entrance is correctly named, and primary part is entrance, no errors either. but it just wont generate :(

    • @Bertrayo
      @Bertrayo 6 หลายเดือนก่อน

      @@SmilerRiot follow up: the "error" that i was getting before was line 19 of room_generation (LatestRoom.Value.exit.CFrame)
      basically it doesnt know where to pivot, therefor doesnt generate

    • @SmilerRiot
      @SmilerRiot 6 หลายเดือนก่อน

      @@Bertrayo You need to put in “NewRoom:PivotTo(LatestRoom.Value.Exit.CFrame)

  • @daniels5707
    @daniels5707 หลายเดือนก่อน +1

    it took me a few days until I realized that you used bindable functions.

  • @altClock..
    @altClock.. 8 หลายเดือนก่อน +1

    also if you dont want the gen be curved you can use different method for the pivot, in startroom and other rooms you can put a invisible 1,1,1 sized block and call it "EndPart" and put it at the door pos but at the center. Then in the rooms you have to remove the door enter walls (3 of them) and done

  • @randomstuffloool
    @randomstuffloool 8 หลายเดือนก่อน +2

    I usually don’t watch tutorials but im watching allat 🔥🔥🔥

  • @theoneandonlyonekomon
    @theoneandonlyonekomon 7 หลายเดือนก่อน +3

    error: Workspace.StartRoom.Door.Main:6: invalid argument #1 to 'Connect' (RBXScriptSignal expected, got function) - Server - Main:6

  • @Sans_In_A_Basement
    @Sans_In_A_Basement 8 หลายเดือนก่อน +4

    6:20 feels familiar

  • @UsBallVilockea24
    @UsBallVilockea24 4 วันที่ผ่านมา +1

    The vid:🚪
    The song:🔑🔑🔑🔑🔑🔑🔑👁️

  • @coulombe14rblx
    @coulombe14rblx 8 หลายเดือนก่อน +4

    Hey aiohwa,
    ive done everything like youve done but somehow the room generation isnt working..
    the door opening is working but not the room generating
    i tried looking for red parts but there werent and also tried copying your version but same results
    do you know whats happening?

    • @aiohwa
      @aiohwa  8 หลายเดือนก่อน

      not really, sorry.

    • @coulombe14rblx
      @coulombe14rblx 8 หลายเดือนก่อน

      @@aiohwa oh ok
      If you ever find out the issue pls tell me!

    • @TheYouRi
      @TheYouRi 25 วันที่ผ่านมา

      @@coulombe14rblx I think i found what you're talking about(sorry for being late!). Did you paste the string (game.ReplicatedStorage.Door_Open:Fire()) in the Main script that is in StartRoom? It may be the problem.

    • @CanadianTrainProductions2013
      @CanadianTrainProductions2013 24 วันที่ผ่านมา

      @@aiohwa I have a similar problem, the door does not open. Do you know what's happening?

  • @maxius8151
    @maxius8151 7 หลายเดือนก่อน +3

    i got a problem whit red line, it say " ServerScriptService.Room_Generation:19: attempt to index nil with 'exit' " i type "exit" exacly like the video, idk how to fix it, pls tell me

    • @aiohwa
      @aiohwa  7 หลายเดือนก่อน +2

      you didn't set the latest room value to start room

    • @maxius8151
      @maxius8151 7 หลายเดือนก่อน +1

      ooh

    • @maxius8151
      @maxius8151 7 หลายเดือนก่อน

      so i have to put all values to start room workspace to?
      @@aiohwa

    • @maxius8151
      @maxius8151 7 หลายเดือนก่อน +1

      i fixed it i will give a super like to this video :D@@aiohwa

    • @aiohwa
      @aiohwa  7 หลายเดือนก่อน +1

      thanks@@maxius8151

  • @yourcertifiedlonely
    @yourcertifiedlonely 8 หลายเดือนก่อน +2

    I remember making my rooms game using his kit.

  • @AgnesKiener-ec2wr
    @AgnesKiener-ec2wr 8 หลายเดือนก่อน +2

    Finaly We Get The Fr One

  • @ТимурШамрицкий
    @ТимурШамрицкий 8 หลายเดือนก่อน +3

    Hi @aiohwa, will you do perpetual rooms refreshed leak?

    • @goober1144
      @goober1144 8 หลายเดือนก่อน

      or just wait for the game.

    • @ТимурШамрицкий
      @ТимурШамрицкий 8 หลายเดือนก่อน

      @@goober1144yes I'm waiting for the refreshed update i was asking

  • @voidcreature__
    @voidcreature__ 12 วันที่ผ่านมา +1

    The room generation script isn’t working but keeps mentioning lines 19 and 26, I typed them the same as the description and the video

    • @voidcreature__
      @voidcreature__ 12 วันที่ผ่านมา

      It says ServerScriptService.Room_Generation:19: attempt to index nil with ‘exit’

  • @AnaHazelPascual
    @AnaHazelPascual 7 วันที่ผ่านมา

    tysm for this tut! i glad that the door worked bc i was praying to god lol.

  • @Drumy134
    @Drumy134 8 หลายเดือนก่อน +1

    Good thing i know how to make a locker but im waiting for part 3

  • @ryanphillips6335
    @ryanphillips6335 3 หลายเดือนก่อน

    Bro your video is amazing! I subbed and I'm going to follow the entire tutorial! Thank you for this masterpiece!

  • @pierrebrum6472
    @pierrebrum6472 หลายเดือนก่อน +2

    I think I did something wrong because I've tried the scripts over and over again but they don't work, could anyone point out the possible mistakes I could be making below?

    • @Lostintranslationsss
      @Lostintranslationsss 13 วันที่ผ่านมา

      just open output window and see the errors

  • @pimka1ca
    @pimka1ca 7 หลายเดือนก่อน +3

    How can I make my camera shake when the monster is flying?

    • @aiohwa
      @aiohwa  7 หลายเดือนก่อน

      what

    • @pimka1ca
      @pimka1ca 7 หลายเดือนก่อน

      I need to make the screen shake when the monster flies by

    • @BengermenFranklin
      @BengermenFranklin 5 หลายเดือนก่อน

      @@aiohwa Like in Doors, when Rush or Ambush pass by, your screen shakes, he means that.

  • @tashagilpin22
    @tashagilpin22 8 หลายเดือนก่อน +5

    Move door script pls i cant see with bad quality

  • @piggyfan7324
    @piggyfan7324 หลายเดือนก่อน

    W Video, Thx For The Help Good Luck On Reaching 2K😁

  • @itz_n3uva
    @itz_n3uva 7 หลายเดือนก่อน +2

    the generation script doesn't work. there's no errors so I'm assuming it just isn't being called? I copied the code off the pinned comment and did everything exactly so idk why it's not working, please help

    • @itz_n3uva
      @itz_n3uva 7 หลายเดือนก่อน

      Nevermind I forgot to make the event fire when the door was opened

  • @ollea60
    @ollea60 6 หลายเดือนก่อน +1

    you have to move the text its covering up the "Main" modifications which cause the game not to realize that its gotta generate

  • @RomanKridd_Official
    @RomanKridd_Official 6 หลายเดือนก่อน +2

    Now we need tutorial about entities, tables, closets etc.

    • @MrDriftVR
      @MrDriftVR 6 หลายเดือนก่อน

      He already made part two which covers entity’s and part three which covers closets

  • @LunarisTheDeveloper
    @LunarisTheDeveloper 8 หลายเดือนก่อน +2

    will this compete with nex's kit?!?!?!?!

  • @nathangd5136
    @nathangd5136 5 หลายเดือนก่อน

    I don’t really want to just copy like brain dead people so as a person who codes but can’t explain, I’ll explain the door code. You can see various variables on the top of the script, using the proximity prompt, the doorspawn, also getting a service called TweenService and the sound. So when the proximity prompt is triggered, we must connect it to a function and add a perimeter of the name “player”. So then, it gets the variables of the player’s character and the humanoid of the character. If the humanoid’s health is less than 1, it will return. Now, it will create a new Tween with a new Tween info. After that is done, we will play the tween animation, and the sound will be played, then it will wait a second. (*did I miss a line of code?*)

    • @nathangd5136
      @nathangd5136 5 หลายเดือนก่อน

      I didn’t explain it exactly, but the way to learn I recommend is to look back on the code you have written and try to understand it.

  • @Fxfifaa
    @Fxfifaa 8 หลายเดือนก่อน +2

    BRo u got the same subs as me im sure urs will increasemore

  • @tornadoboigd
    @tornadoboigd 7 หลายเดือนก่อน +3

    i tried to make a rooms game with this tutorial and i followed the steps until the door script but the door script i typed like you did it did not work

    • @aiohwa
      @aiohwa  7 หลายเดือนก่อน

      open output for the error so u can fix

    • @tornadoboigd
      @tornadoboigd 7 หลายเดือนก่อน

      Ok I will tomorrow

    • @Adamthecooleditor
      @Adamthecooleditor 7 หลายเดือนก่อน

      @@aiohwa I tried to make it for your tutorial and the starter room make a disaster I’m gonna use a kit

    • @TheYouRi
      @TheYouRi 25 วันที่ผ่านมา

      @@tornadoboigd I know i'm extremely late but did you paste the string (game.ReplicatedStorage.Door_Open:Fire()) in the Main script that is in StartRoom? It may be the problem

  • @UltimateRoboxGaming2020
    @UltimateRoboxGaming2020 หลายเดือนก่อน

    how do i fix: line 20 of Room_Generation: attempt to index nill with "exit"?

  • @Untitled_Gaming_Channel
    @Untitled_Gaming_Channel 7 หลายเดือนก่อน +1

    uhh, I can only open the door but the room generation doesn't work

  • @AgnesKiener-ec2wr
    @AgnesKiener-ec2wr 8 หลายเดือนก่อน +1

    I Have Learned How To Make Animaions Whit TweenService And How To Tween The Character Body Parts And I Learned That From You At Your 600 Sub Special Live Stream Named "Making a IR: Recoded fangame [600 SUB SPECIAL!]" From That Live Stream I Was Able To Make Cool Animations And I Began Making Rooms Games And Grew Up Kinda! And Found Out How To Make Room Generation And I Was Getting Better At Understanding Code And I Myself Found Out Not To Long Ago How To Tween The Entites Through All The Rooms Whit Waypoints As Well!

  • @TheLockerChecker
    @TheLockerChecker หลายเดือนก่อน +1

    For some reason the door animation doesn't work when i open the door and it's just stuck there, how do i fix it? (i have no typos in the script.)

  • @BibliotecaLOL
    @BibliotecaLOL 6 หลายเดือนก่อน +2

    8:47 The subtitles were covering what you were typing, can you tell me what it was?

    • @ARIRS-rv3xf
      @ARIRS-rv3xf 4 หลายเดือนก่อน

      WHAT

    • @nooob_itgaming4809
      @nooob_itgaming4809 17 วันที่ผ่านมา +1

      Yeah, why does it block it? We really need help here!

  • @pimka1ca
    @pimka1ca 8 หลายเดือนก่อน +1

    Music from the level LIMBO from geometry dash

  • @handgrat
    @handgrat 3 หลายเดือนก่อน

    Dude this helps a lot now i can make my own fan game!

  • @nooob_itgaming4809
    @nooob_itgaming4809 17 วันที่ผ่านมา +1

    8:44 What is the code? I can't see PLS reply! 😥 If anyone else knows please tell me!

  • @SkieMC
    @SkieMC 8 หลายเดือนก่อน +1

    Memories.. Man.. OH ALSO THIS MIGHT BE USEFUL FOR MY FREN TY :3

  • @bzmilko
    @bzmilko 5 หลายเดือนก่อน

    I am aware that I already commented on this video, but I keep on getting this “attempt to index nil with ‘play’” message during the part where you open the door, does anyone know what’s going on?

  • @rig624
    @rig624 18 วันที่ผ่านมา

    also theres a problem on the room generating script, its not error but the rooms just generate into the bottom, do you know a solution for this?

  • @RushAllDOORS
    @RushAllDOORS 8 หลายเดือนก่อน +2

    Next video is: How to make a Rooms Fangame Part 2: Entities (Rushers, Rebounders)

    • @aiohwa
      @aiohwa  8 หลายเดือนก่อน +1

      correc

    • @RushAllDOORS
      @RushAllDOORS 8 หลายเดือนก่อน +1

      And you will teach us how to make a Table Checkers

    • @aiohwa
      @aiohwa  8 หลายเดือนก่อน +1

      @@RushAllDOORS thats in part 5 i think

    • @RushAllDOORS
      @RushAllDOORS 8 หลายเดือนก่อน +1

      Okay 👌

    • @RushAllDOORS
      @RushAllDOORS 8 หลายเดือนก่อน +1

      By the way, your tutorials are very useful to me. I'm doing my Rooms here. It is at the prototype stage, but the alpha will be released only in April. Don't you want to check it out sometime?

  • @Brickfilmer637
    @Brickfilmer637 7 หลายเดือนก่อน

    @aiohwa at 8:40 your text covers the script your typing
    I managed to find out what you wrote
    but my rooms only generate once then it stops
    does anyone know the solution??
    Thanks!

    • @Scribbles-404
      @Scribbles-404 6 หลายเดือนก่อน

      What does it say? cuz I couldn't make it out lmao

    • @ScrewdriverDud
      @ScrewdriverDud 6 หลายเดือนก่อน

      Is it the door_open fire?
      "game.ReplicatedStorage.Door_Open:Fire()"
      *edit: I realised the edit-*

  • @Splat_Anims
    @Splat_Anims 21 วันที่ผ่านมา

    Why's the door not opening? It doesn't say I typed anything wrong. Oh it says it failed to load the animation.

  • @simonmontacute9359
    @simonmontacute9359 17 วันที่ผ่านมา

    Apparently the label is not a valid member of the model Room_1, what does this mean and how can I fix it 💀

  • @theonesemanthatplaysbrutal5192
    @theonesemanthatplaysbrutal5192 8 หลายเดือนก่อน +1

    Since I already have a Rooms fangame, I probably wont need this (unless it also teaches you how to make locker checkers bcuz my game has NONE)

    • @aiohwa
      @aiohwa  8 หลายเดือนก่อน

      it's not even compatible with this tutorial

    • @BloodmoonYTAUTTP
      @BloodmoonYTAUTTP 2 หลายเดือนก่อน

      @@aiohwa Copy paste the code for door open pls, I typed it and it didnt work

  • @InfectiousGamess
    @InfectiousGamess 3 หลายเดือนก่อน

    Can anyone help me? When I open the first door, it always gives me this error: “ServerScriptService.Room_Generation:19: attempt to index nil with ‘exit’” can anyone please help me?

  • @Xrailo
    @Xrailo 18 วันที่ผ่านมา

    bro what am i supposed to do with the "ServerScriptService.Room_Generation:19: attempt to index nil with 'Entrance'"

  • @Mrtempest1235
    @Mrtempest1235 2 หลายเดือนก่อน

    yo can you help me with the error im having issues, with? its this "attempt to concatenate Enum with nil" it gives me this error when i try to open the door but it just wont open

  • @RedRepost95
    @RedRepost95 8 หลายเดือนก่อน +1

    I-its.... you.... its.... ITS.... ITS BACK!!1111

  • @wewwawwew-jm4sn
    @wewwawwew-jm4sn 7 หลายเดือนก่อน

    so i have a problem with the tweening between the door animation and i was wondering how to make it pivot to the DoorOpen thingy and i opened the output no typos no errors yet the tween isn't working i tried unanchoring it; didn't work so pls tell me how it should be fixed
    EDIT: displaced a ":" with a "." and couldn't see the error HAH

  • @ChafaPro
    @ChafaPro 20 วันที่ผ่านมา +1

    THE SUBTITLES ARE COVERING THE ROOM_1 MAIN SCRIPT

  • @altClock..
    @altClock.. 8 หลายเดือนก่อน +1

    its... FUCKING... BACK.

  • @DS_MOD
    @DS_MOD 2 หลายเดือนก่อน

    I'm no longer having trouble!
    Apparently it didn't like that I had label set to a model and not the part it was assigned to take the TextLabel from!!

  • @ThesillyV221
    @ThesillyV221 6 หลายเดือนก่อน

    I did the script for the door but whenever I open the door it just don’t open how do I fix this? I think I made the script wrong

  • @Karlo645
    @Karlo645 29 วันที่ผ่านมา

    i need help, i created one room and its fine, but then when i made two rooms they spawn in like a staircase. can someone help?

  • @TheRealBunny2221
    @TheRealBunny2221 หลายเดือนก่อน +1

    Oh no
    LIMBO

  • @Fractvred
    @Fractvred 29 วันที่ผ่านมา

    very cool, I somehow failed to make the door open, but its my first time ever using studio, so i will keep trying

  • @Ares_zip128
    @Ares_zip128 หลายเดือนก่อน +2

    door code pls?

  • @scoperman6445
    @scoperman6445 หลายเดือนก่อน

    i somehow got an error at the door opening script, could you copy and paste the it?
    edit: i got it working after multiple days of wondering
    edit 2: nevermind it doesnt work

  • @ElpapuGamer452
    @ElpapuGamer452 หลายเดือนก่อน

    best tutorial ever

  • @theoneandonlyonekomon
    @theoneandonlyonekomon 7 หลายเดือนก่อน +1

    what does the "Door_Anim" do?

    • @aiohwa
      @aiohwa  7 หลายเดือนก่อน +1

      its the animation for when the door swings open

    • @theoneandonlyonekomon
      @theoneandonlyonekomon 7 หลายเดือนก่อน +1

      yes but how does it do that in the script when its not a model

  • @cattesilly
    @cattesilly หลายเดือนก่อน +1

    8:50 is being blocked by the captions so i dont know what to add

    • @TheBasicOliver
      @TheBasicOliver หลายเดือนก่อน

      probably
      game.ReplicatedStorage.Door_Open:Fire()

    • @Ares_zip128
      @Ares_zip128 หลายเดือนก่อน

      turn off captions

    • @nooob_itgaming4809
      @nooob_itgaming4809 17 วันที่ผ่านมา +1

      Same thing here, they are blocking the text!

  • @johnishere1111
    @johnishere1111 หลายเดือนก่อน +1

    There's an error on the {Cframe = dooropen.Cframe}
    And yes its the first { i don't know how to solve it
    Proof: {
    CFrame: CFrame
    }
    Expected Identifier, got'{'

    • @mareks9241
      @mareks9241 หลายเดือนก่อน

      type space and ) at the end

  • @lcd41014
    @lcd41014 4 หลายเดือนก่อน

    FOCUS..
    on making the fangame

  • @somenormalbanana12
    @somenormalbanana12 8 หลายเดือนก่อน +2

    YIPPPEEEEEE
    edit: can yall stop bitching about errors 😭

  • @TopHat_Cactus
    @TopHat_Cactus 25 วันที่ผ่านมา

    I copied the door code correctly and there are no typos or errors at all, the door animation is not working at all, neither is the sound

  • @Daviiccs
    @Daviiccs หลายเดือนก่อน

    if your rooms are only generating 2 times,you need to add the new line of code to BOTH of the main scripts,or else it wont fire the event when you open the 2nd room

    • @thefunnymelons
      @thefunnymelons หลายเดือนก่อน

      im sorry i dont understand but can you explain.

  • @THEJEATING
    @THEJEATING 8 หลายเดือนก่อน +2

    nice tutorial

  • @justgennnn
    @justgennnn หลายเดือนก่อน

    how can i make it generate a specific amount of rooms?

  • @jackiecochran2737
    @jackiecochran2737 5 หลายเดือนก่อน

    The song got me like:
    🗝 🗝
    🗝 🗝
    🗝 🗝
    🗝 🗝

  • @unknowface579
    @unknowface579 5 หลายเดือนก่อน

    idk why room generated not work the error is
    "Generated is not a valid member of Workspace" can someone tell me?

    • @unknowface579
      @unknowface579 5 หลายเดือนก่อน

      nvm is work idk how

  • @A-45Rooms
    @A-45Rooms 4 หลายเดือนก่อน

    Thank you for this

    • @BloodmoonYTAUTTP
      @BloodmoonYTAUTTP 2 หลายเดือนก่อน

      Sup Im makin a rooms fangame with this tutorial

  • @catarmy956
    @catarmy956 5 หลายเดือนก่อน +1

    can somebody help me? the door Noise Won't play

  • @ERroomsmaker
    @ERroomsmaker 19 วันที่ผ่านมา

    i spent almost an hour on the door code and i accidentally loaded his main page and erased my 38 minutes of typing code PLS GIVE US THE DOOR CODE

  • @zzycot
    @zzycot 8 หลายเดือนก่อน +1

    No way i can make a rooms fangame without kits!1!1!1!

  • @idk12414
    @idk12414 หลายเดือนก่อน

    What is the script for the 8:50 moment? the text on the front bothered me

    • @TheBasicOliver
      @TheBasicOliver หลายเดือนก่อน

      i think it's
      game.ReplicatedStorage.Door_Open:Fire()

  • @Acidshot14
    @Acidshot14 4 หลายเดือนก่อน

    how do i change room size without causing collision?

  • @Agua_liquidaofc
    @Agua_liquidaofc 13 วันที่ผ่านมา

    Why didn't my door animate?

  • @PrimaryDaGoof
    @PrimaryDaGoof 5 หลายเดือนก่อน

    Hey aiohwa
    I tried making the part "fabric" but all it dose is to make it grey
    I even turned 2022 Materials service to false and still doesn't work
    What do I do now?

    • @Brysoooooon
      @Brysoooooon 4 หลายเดือนก่อน

      you have to change the color of the part

    • @PrimaryDaGoof
      @PrimaryDaGoof 4 หลายเดือนก่อน

      Oh thanks

  • @NukaColaCompanyOfficial
    @NukaColaCompanyOfficial 5 หลายเดือนก่อน

    can you put the script of min 4:13 ? the vid is a bit blurry i cant see it at all

  • @ERroomsmaker
    @ERroomsmaker 18 วันที่ผ่านมา

    my code isnt working and it doesnt say my animation didnt load there is something wrong with my game

  • @maryalarcon7574
    @maryalarcon7574 6 หลายเดือนก่อน +1

    I don’t see a button that shows the E to click on the door….

  • @BUKOYAY
    @BUKOYAY หลายเดือนก่อน

    When i open a door it generates but if i do it again it generates at the start pls help me.

  • @abyssaloverseer6268
    @abyssaloverseer6268 หลายเดือนก่อน

    The door opening thing ain't working for me.

  • @mokaka-303
    @mokaka-303 2 หลายเดือนก่อน

    what to do if there is no door animation and how to add it please help there is a button and it does nothing and there is no animation everything is there except the door animation

  • @enst3ncy228
    @enst3ncy228 4 หลายเดือนก่อน

    can we change the lobby and the door to make it better? :D

  • @miguelgoncalvesmarquetti7669
    @miguelgoncalvesmarquetti7669 2 หลายเดือนก่อน

    hey in 8:45 how is the comand you put because your text is blocking

    • @TheBasicOliver
      @TheBasicOliver หลายเดือนก่อน

      i think it's
      game.ReplicatedStorage.Door_Open:Fire()

  • @davidcastro8174
    @davidcastro8174 หลายเดือนก่อน

    How do I group it? I wasn't able to see

  • @theoneandonlyonekomon
    @theoneandonlyonekomon 7 หลายเดือนก่อน +1

    aihowa copy and paste door script please

  • @That_DummYY
    @That_DummYY หลายเดือนก่อน

    8:49 what is over the text ??

  • @graysprunki999
    @graysprunki999 8 หลายเดือนก่อน +1

    6:22 origin of FOCUS (u-10 hoax)

    • @aiohwa
      @aiohwa  8 หลายเดือนก่อน

      bro it originates from Nighthawk22 💀

  • @PPainterr
    @PPainterr 8 วันที่ผ่านมา

    Yo, can someone post the script in the comments? I did everything right and it doesnt work. AND IM REALLY MAD! THIS IS MY 4TH ATTEMPT!