How to make a Rooms Fangame (stop watching this please)

Поділитися
Вставка
  • Опубліковано 28 сер 2024
  • So im re-making this series but much more better.
    Next episode will be making entity movement!
    Tags
    Rooms, Rooms low detailed, Interminable Rooms, aiohwa, how to make a rooms fangame

КОМЕНТАРІ • 470

  • @aiohwa
    @aiohwa  6 місяців тому +25

    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 6 місяців тому +1

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

    • @obywateljulo3436
      @obywateljulo3436 6 місяців тому

      can you make this as a um kit plz :3

    • @yoboyjoshua1
      @yoboyjoshua1 6 місяців тому

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

    • @mathiasgameplays6036
      @mathiasgameplays6036 6 місяців тому

      @@obywateljulo3436learn how to script

    • @aiohwa
      @aiohwa  6 місяців тому +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 6 місяців тому +11

    the memories are flooding back

  • @thatdudewiththeplant
    @thatdudewiththeplant 6 місяців тому +10

    Good song choice, Really helped me FOCUS

  • @SmilerRiot
    @SmilerRiot 4 місяці тому +6

    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 4 місяці тому +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 4 місяці тому +1

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

    • @Bertrayo
      @Bertrayo 4 місяці тому

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

    • @Bertrayo
      @Bertrayo 4 місяці тому

      @@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 4 місяці тому

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

  • @chrisrodriguezm13
    @chrisrodriguezm13 5 місяців тому +4

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

  • @ollea60
    @ollea60 4 місяці тому +1

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

  • @altClock..
    @altClock.. 6 місяців тому +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

  • @nathangd5136
    @nathangd5136 3 місяці тому

    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 3 місяці тому

      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.

  • @ryanphillips6335
    @ryanphillips6335 Місяць тому

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

  • @Hazenrdpk2612
    @Hazenrdpk2612 5 місяців тому +4

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

    • @Hazenrdpk2612
      @Hazenrdpk2612 4 місяці тому +1

      Nvm I found out lol

    • @e4p614
      @e4p614 3 місяці тому

      @@Hazenrdpk2612 how?

    • @Hazenrdpk2612
      @Hazenrdpk2612 3 місяці тому +1

      @@e4p614 make sure the cframe is positioned correctly.

  • @yankoyankov-fx8pb
    @yankoyankov-fx8pb 6 місяців тому +4

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

  • @randomstuffloool
    @randomstuffloool 6 місяців тому +1

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

  • @A_181_
    @A_181_ 6 місяців тому +1

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

  • @Hurricane_Activity
    @Hurricane_Activity 6 місяців тому +1

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

    • @aiohwa
      @aiohwa  6 місяців тому +1

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

    • @Hurricane_Activity
      @Hurricane_Activity 6 місяців тому +1

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

    • @aiohwa
      @aiohwa  6 місяців тому +1

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

    • @Hurricane_Activity
      @Hurricane_Activity 6 місяців тому +1

      @@aiohwa XD

    • @monasanchez6892
      @monasanchez6892 2 місяці тому

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

  • @EterSky08
    @EterSky08 6 місяців тому +4

    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 4 місяці тому +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.

  • @miriamgonzalez2675
    @miriamgonzalez2675 5 місяців тому +3

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

  • @Untitled_Gaming_channel
    @Untitled_Gaming_channel 5 місяців тому +2

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

  • @AgnesKiener-ec2wr
    @AgnesKiener-ec2wr 6 місяців тому +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!

  • @Fxfifaa
    @Fxfifaa 6 місяців тому +2

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

  • @pimka1ca
    @pimka1ca 5 місяців тому +3

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

    • @aiohwa
      @aiohwa  5 місяців тому

      what

    • @pimka1ca
      @pimka1ca 5 місяців тому

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

    • @BengermenFranklin
      @BengermenFranklin 3 місяці тому

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

  • @yourcertifiedlonely
    @yourcertifiedlonely 6 місяців тому +2

    I remember making my rooms game using his kit.

  • @Sans_In_A_Basement
    @Sans_In_A_Basement 6 місяців тому +4

    6:20 feels familiar

  • @AgnesKiener-ec2wr
    @AgnesKiener-ec2wr 6 місяців тому +2

    Finaly We Get The Fr One

  • @DS_MOD
    @DS_MOD 25 днів тому

    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!!

  • @handgrat
    @handgrat Місяць тому

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

  • @SkieMC
    @SkieMC 6 місяців тому +1

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

  • @theonesemanthatplaysbrutal5192
    @theonesemanthatplaysbrutal5192 6 місяців тому +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  6 місяців тому

      it's not even compatible with this tutorial

    • @BloodmoonYt9
      @BloodmoonYt9 16 днів тому

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

  • @RomanKridd_Official
    @RomanKridd_Official 4 місяці тому +2

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

    • @MrDrift3015
      @MrDrift3015 4 місяці тому

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

  • @pimka1ca
    @pimka1ca 6 місяців тому +1

    Music from the level LIMBO from geometry dash

  • @user-tz7sl4mk7e
    @user-tz7sl4mk7e 6 місяців тому +3

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

    • @goober1144
      @goober1144 6 місяців тому

      or just wait for the game.

    • @user-tz7sl4mk7e
      @user-tz7sl4mk7e 6 місяців тому

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

  • @Untitled_Gaming_channel
    @Untitled_Gaming_channel 5 місяців тому +1

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

  • @itz_n3uva
    @itz_n3uva 4 місяці тому +1

    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 4 місяці тому

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

  • @maxius8151
    @maxius8151 5 місяців тому +2

    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  5 місяців тому +2

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

    • @maxius8151
      @maxius8151 5 місяців тому +1

      ooh

    • @maxius8151
      @maxius8151 5 місяців тому

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

    • @maxius8151
      @maxius8151 5 місяців тому +1

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

    • @aiohwa
      @aiohwa  5 місяців тому +1

      thanks@@maxius8151

  • @thecolingamer4
    @thecolingamer4 5 місяців тому +2

    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  5 місяців тому

      open output for the error so u can fix

    • @thecolingamer4
      @thecolingamer4 5 місяців тому

      Ok I will tomorrow

    • @Adamthecooleditor
      @Adamthecooleditor 5 місяців тому

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

  • @RedRepost95
    @RedRepost95 6 місяців тому +1

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

  • @tashagilpin22
    @tashagilpin22 6 місяців тому +3

    Move door script pls i cant see with bad quality

  • @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

  • @BibliotecaLOL
    @BibliotecaLOL 4 місяці тому +1

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

  • @coulombe14rblx
    @coulombe14rblx 6 місяців тому +2

    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  6 місяців тому

      not really, sorry.

    • @coulombe14rblx
      @coulombe14rblx 6 місяців тому

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

  • @LunarisTheDeveloper
    @LunarisTheDeveloper 6 місяців тому +2

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

  • @THEJEATING
    @THEJEATING 6 місяців тому +2

    nice tutorial

  • @jackiecochran2737
    @jackiecochran2737 3 місяці тому

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

  • @lcd41014
    @lcd41014 2 місяці тому

    FOCUS..
    on making the fangame

  • @catarmy956
    @catarmy956 3 місяці тому +1

    door don't
    work

  • @Mrtempest1235
    @Mrtempest1235 13 днів тому

    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

  • @SkippyPlays9382_Official.
    @SkippyPlays9382_Official. 4 дні тому

    It works but the door just *Falls* but i will keep it Thanks!

  • @RushAllDOORS
    @RushAllDOORS 6 місяців тому +2

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

    • @aiohwa
      @aiohwa  6 місяців тому +1

      correc

    • @RushAllDOORS
      @RushAllDOORS 6 місяців тому +1

      And you will teach us how to make a Table Checkers

    • @aiohwa
      @aiohwa  6 місяців тому +1

      @@RushAllDOORS thats in part 5 i think

    • @RushAllDOORS
      @RushAllDOORS 6 місяців тому +1

      Okay 👌

    • @RushAllDOORS
      @RushAllDOORS 6 місяців тому +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?

  • @catarmy956
    @catarmy956 5 місяців тому +1

    door won't work

  • @the_E_isnot_theeing
    @the_E_isnot_theeing 4 місяці тому +1

    I lost hope when i did all correct, i copied room gen script and pasted but when i open door, it opens but room dont generate!!!!

  • @theoneandonlyonekomon
    @theoneandonlyonekomon 5 місяців тому +2

    @aihowa copy and paste door script
    please

  • @somenormalbanana11
    @somenormalbanana11 6 місяців тому +2

    YIPPPEEEEEE
    edit: can yall stop bitching about errors 😭

  • @miguelgoncalvesmarquetti7669
    @miguelgoncalvesmarquetti7669 10 днів тому

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

  • @ThesillyV221
    @ThesillyV221 4 місяці тому

    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

  • @bzmilko
    @bzmilko 3 місяці тому

    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?

  • @wewwawwew-jm4sn
    @wewwawwew-jm4sn 4 місяці тому

    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

  • @theoneandonlyonekomon
    @theoneandonlyonekomon 5 місяців тому +1

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

  • @catarmy956
    @catarmy956 3 місяці тому +1

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

  • @InfectiousGamess
    @InfectiousGamess Місяць тому

    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?

  • @altClock..
    @altClock.. 6 місяців тому +1

    its... FUCKING... BACK.

  • @zzycot
    @zzycot 6 місяців тому +1

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

  • @maryalarcon7574
    @maryalarcon7574 4 місяці тому +1

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

  • @enst3ncy228
    @enst3ncy228 2 місяці тому

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

  • @BloodmoonYt9
    @BloodmoonYt9 16 днів тому

    DAMN!!!!, The freaking door wont open bruh

  • @Superoneswithtophats
    @Superoneswithtophats 4 місяці тому

    3:01 it’s the limbo song that when the keys move

  • @theoneandonlyonekomon
    @theoneandonlyonekomon 5 місяців тому +1

    what does the "Door_Anim" do?

    • @aiohwa
      @aiohwa  5 місяців тому +1

      its the animation for when the door swings open

    • @theoneandonlyonekomon
      @theoneandonlyonekomon 5 місяців тому +1

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

  • @A-45Rooms
    @A-45Rooms 2 місяці тому

    Thank you for this

    • @BloodmoonYt9
      @BloodmoonYt9 24 дні тому

      Sup Im makin a rooms fangame with this tutorial

  • @Spacer12345
    @Spacer12345 4 місяці тому

    EVERYTHING IS DONE RIGHT BUT IT DOESN'T WORK

  • @newseek200
    @newseek200 6 місяців тому +1

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

    • @aiohwa
      @aiohwa  6 місяців тому

      bro it originates from Nighthawk22 💀

  • @Mucheirp
    @Mucheirp 4 місяці тому

    bro i love u i try gnomo code tutorial but dont worked im gonna try this

  • @mathiasgameplays6036
    @mathiasgameplays6036 6 місяців тому

    finally one wihout kits

  • @Brickfilmer637
    @Brickfilmer637 5 місяців тому

    @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!

    • @KiwiMelon728
      @KiwiMelon728 4 місяці тому

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

    • @ScreechDude
      @ScreechDude 4 місяці тому

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

  • @Casacade
    @Casacade 2 місяці тому

    the text for main is in the freaking way

  • @INTERMINABLE_ROOMS_SPAWNER
    @INTERMINABLE_ROOMS_SPAWNER 5 місяців тому +1

    I still can't get the door open-_- -_- -_- -_- -_- -_-

    • @INTERMINABLE_ROOMS_SPAWNER
      @INTERMINABLE_ROOMS_SPAWNER 5 місяців тому +1

      make a kit bruh-_-
      I'm not going to copy your commands all from scratch so that in the end NONE OF them work.

    • @aiohwa
      @aiohwa  5 місяців тому

      @@INTERMINABLE_ROOMS_SPAWNER atleast try opening output for the error

    • @INTERMINABLE_ROOMS_SPAWNER
      @INTERMINABLE_ROOMS_SPAWNER 4 місяці тому

      @@aiohwa I've already put, everything, everything you ordered, the old kit didn't work, and neither did this one, man. Just make a simple kit, is that easy for you?
      That I'll never be able to do things I wanted to, I hate myself

    • @aiohwa
      @aiohwa  4 місяці тому

      @@INTERMINABLE_ROOMS_SPAWNER I don't plan on making a kit since people on the toolbox will just repost my models and I wouldn't be able to do anything about it

    • @INTERMINABLE_ROOMS_SPAWNER
      @INTERMINABLE_ROOMS_SPAWNER 4 місяці тому

      @@aiohwa ok bye

  • @ushanonu2900
    @ushanonu2900 2 місяці тому

    hey! i'm making a rooms game called intergalactic rooms! but the door script is not working. how do I fix it?🤔

  • @unknowface579
    @unknowface579 3 місяці тому

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

  • @Acidshot14
    @Acidshot14 Місяць тому

    how do i change room size without causing collision?

  • @KyrieSmith-bl1on
    @KyrieSmith-bl1on 4 місяці тому

    IM MAD>:( 8:41 THE SUBTITLES ARE BLOCKING THE SCRIPT SO I CANT SEE IT. please fix:(

    • @Exquizity
      @Exquizity 3 місяці тому

      game.ReplicatedStorage.Door_Open:Fire()

  • @BloodmoonYt9
    @BloodmoonYt9 24 дні тому

    The door wont open, can you copy the door open script??

  • @AnotherKogamaPlayer
    @AnotherKogamaPlayer Місяць тому

    i tried but the door doesnt open

  • @Layter87K
    @Layter87K 3 місяці тому

    Thank
    You best man!

  • @THEROOMSEXPLORER11
    @THEROOMSEXPLORER11 23 дні тому

    They say that you have a kit do you know what it’s link?

  • @user-jw4fd5wx9w
    @user-jw4fd5wx9w 6 місяців тому +1

    so, ive just made everything perfectly, but, when i try to change the doornumber value to 1, it still generates a-001 infinitely, but everything else works tho

    • @aiohwa
      @aiohwa  6 місяців тому +1

      i would recommend going over the room generation part where it says like "if doornum.value < 10 then" that part of the video

    • @aiohwa
      @aiohwa  6 місяців тому

      i edited pinned comment, it has the full room gen code

    • @user-jw4fd5wx9w
      @user-jw4fd5wx9w 6 місяців тому

      @@aiohwa k tysm it works now

    • @aiohwa
      @aiohwa  6 місяців тому

      no problem@@user-jw4fd5wx9w

  • @Memememed
    @Memememed 6 місяців тому

    love it

  • @iideadbush
    @iideadbush 4 місяці тому

    i dont like how some of the text covers the script at 8:34

  • @NukaColaCompanyOfficial
    @NukaColaCompanyOfficial 3 місяці тому

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

  • @Windertonthe2nd
    @Windertonthe2nd 29 днів тому

    my door didn't work

  • @theoneandonlyonekomon
    @theoneandonlyonekomon 5 місяців тому +1

    aihowa copy and paste door script please

  • @你是个傻瓜
    @你是个傻瓜 24 дні тому

    my door wont work and i followed the code your kit is broken

  • @user-pm5vk1jg8w
    @user-pm5vk1jg8w Місяць тому

    hey what does the 8:46 new script line say? i cannot read it with the letters

  • @PrimaryDaGoof
    @PrimaryDaGoof 3 місяці тому

    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?

  • @jamesdrury3637
    @jamesdrury3637 2 місяці тому

    Hey aiohwa I can’t get the door to turn or make sound but I did the script and every step

  • @RobotsAreeCool
    @RobotsAreeCool 6 місяців тому

    nice

  • @awicaem5407
    @awicaem5407 3 місяці тому

    it could generate only 1 room tho

  • @Cris_channel29
    @Cris_channel29 4 місяці тому

    The generation doesn't work
    Im so confused
    Even i put folder named Gemerated
    Doesn't work.

    • @tristanmorgan4377
      @tristanmorgan4377 Місяць тому

      ik this is late reply but Generated is right spelling. see if it works

  • @YoutubeChanel-qv2ox
    @YoutubeChanel-qv2ox 2 місяці тому

    I wanted to know how the 60 system works, can anyone help me?

  • @r2w-z9o
    @r2w-z9o 5 місяців тому +1

    the damn geometry dash music is getting me 😭😭😭😭

    • @aiohwa
      @aiohwa  5 місяців тому

      focus

    • @r2w-z9o
      @r2w-z9o 5 місяців тому

      @@aiohwa hey blud i can barely see the text you added at 8:45 what is it?

    • @aiohwa
      @aiohwa  5 місяців тому

      @@r2w-z9o it say game.ReplicatedStorage.Door_Open:Fire()

    • @aiohwa
      @aiohwa  5 місяців тому

      @@r2w-z9o if what I said doesn't work try decapitalizing the letters in door_open (did I make a new word)

    • @r2w-z9o
      @r2w-z9o 5 місяців тому

      @@aiohwa it still doesn't work but thank you

  • @GamePlace768
    @GamePlace768 4 місяці тому

    Rooms Generation Is Not Work. Help. I've copied the script in the comment pin And Not Work

  • @bzmilko
    @bzmilko 3 місяці тому

    Hey, can you just like post all the scripts because typing them in is just annoying and can cause errors a lot of the time, thanks in advance

  • @beary-dreamer
    @beary-dreamer 6 місяців тому

    i tried using the door script and it wont work i wonder if i use a packs script will the whole thing break
    i got room gen set up and stuff

    • @beary-dreamer
      @beary-dreamer 6 місяців тому

      the thingy keeps saying stuff like Workspace.Startroom.door.Main:12: Expected ')' (to close '(' at column 128), got '='

  • @mehmetgiray7449
    @mehmetgiray7449 5 місяців тому

    My door is not opening again :( and i checked everything