Alpha - FNF: sillermongus OST

แชร์
ฝัง
  • เผยแพร่เมื่อ 28 ม.ค. 2025

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

  • @slugsaifu
    @slugsaifu ปีที่แล้ว +9

    blud is not indie cross v2 huggy wuggy from hello huggy 😭

  • @VyxiMainchannel35
    @VyxiMainchannel35 ปีที่แล้ว +14

    Fun fact: The color scheme of alphamogus is based on the game files, as these colors serve as a chromakey for adjustable ingame colors

    • @Screwdriverrrrrrr
      @Screwdriverrrrrrr ปีที่แล้ว +2

      Why is the visore green tho? It never changes It's color

  • @toastedprocastinator
    @toastedprocastinator ปีที่แล้ว +15

    i love how the placeholder glitch guy is kinda doing the hello huggy thing and moving with his left and right poses lmao, like the up and down poses too, wonder where they came from ngl

    • @BraylinIsCool
      @BraylinIsCool  ปีที่แล้ว

      his left and right sprites were ripped straight from among us, but his idle, up, and down poses were animated by me, using sprites from the actual game. Also yes, the walking mechanic was based on that one indie cross song lol

    • @connor_khaldi
      @connor_khaldi ปีที่แล้ว

      ​@@BraylinIsCoolwhich song?

    • @BraylinIsCool
      @BraylinIsCool  ปีที่แล้ว

      @@connor_khaldi "hello huggy"

    • @toastedprocastinator
      @toastedprocastinator ปีที่แล้ว

      ​@@BraylinIsCool
      ah ok i knew it lmao, good job on recreating the amongus style then proceeding to make that bf sprite

  • @coquers_
    @coquers_ ปีที่แล้ว +1

    sillermongus

  • @LeoDetective
    @LeoDetective ปีที่แล้ว +1

    I like the placeholder mate

  • @zaej8253
    @zaej8253 ปีที่แล้ว +5

    Idk how to be funny so good song

  • @portalmaster07
    @portalmaster07 ปีที่แล้ว +1

    Lore amogus mix?

  • @Alderex_
    @Alderex_ ปีที่แล้ว +3

    Where'd u get that bf chrom.
    Sussi baki

  • @winnerwintong-ur2qu
    @winnerwintong-ur2qu 6 หลายเดือนก่อน

    cool

  • @danbal5494
    @danbal5494 ปีที่แล้ว +1

    im a silleh amogus

  • @RG123-x7f
    @RG123-x7f ปีที่แล้ว

    do you know how to make dwp

  • @lembleeh
    @lembleeh ปีที่แล้ว +2

    sus bar

  • @nite637
    @nite637 ปีที่แล้ว

    when's the mod gonna come out?

    • @BraylinIsCool
      @BraylinIsCool  ปีที่แล้ว

      Whenever I'm done lol

    • @nite637
      @nite637 ปีที่แล้ว

      bet@@BraylinIsCool

  • @gabrieleduardo4561
    @gabrieleduardo4561 ปีที่แล้ว

    the mod is in development

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

    When is the mod coming out?

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

      Idk not soon cuz I'm busy

  • @seb_dev
    @seb_dev ปีที่แล้ว

    pass script or the code plis, that really good :v

    • @BraylinIsCool
      @BraylinIsCool  ปีที่แล้ว +1

      You can find it in the mods files after I release it
      Also give credit if you do use it

    • @seb_dev
      @seb_dev ปีที่แล้ว

      ok@@BraylinIsCool

    • @williamyt3683
      @williamyt3683 ปีที่แล้ว +1

      seems like my original reply got deleted (I wonder why) but this the code cuz it took me a full 20 minutes to make (wow), next time could ya tell my why ur deleting it braylin? It's legit my code:
      local speed = 4 -- Speed multiplier
      local walking = "n"
      local coolStep = -1
      function onCountdownStarted()
      walking = "n"
      coolStep = -1
      end
      function onStepHit()
      if curStep == coolStep then
      walking = "n"
      end
      end
      function opponentNoteHit(membersIndex, noteData, noteType, isSustainNote)
      if noteData == 0 then
      walking = "l"
      coolStep = curStep + 4
      end
      if noteData == 3 then
      walking = "r"
      coolStep = curStep + 4
      end
      if noteData == 1 or noteData == 2 then
      coolStep = curStep
      walking = "n"
      end
      end
      function onUpdate(elapsed)
      x = getProperty("dad.x", false)
      if walking == "l" then
      setProperty("dad.x", x - speed, false)
      end
      if walking == "r" then
      setProperty("dad.x", x + speed, false)
      end
      end