How to make a CUTSCENE│Roblox Studio Tutorial

Поделиться
HTML-код
  • Опубликовано: 23 окт 2024

Комментарии • 172

  • @Disobeyedcrab
    @Disobeyedcrab  Год назад +41

    Enjoy

    • @kachimark4177
      @kachimark4177 Год назад +2

      😂

    • @fearedwolf1731
      @fearedwolf1731 Год назад +1

      Help me, the script won't generate and I'm getting kinda angry

    • @humanbasiclol3010
      @humanbasiclol3010 Год назад +1

      why script not generated?!!?!?!?!?!?!?

    • @Jfandj
      @Jfandj Год назад +1

      Thank you so much for making this vid I was stuck on animations for ages

    • @Adamations14
      @Adamations14 Год назад +1

      the script wont generate

  • @Smurfis
    @Smurfis Год назад +27

    It’s really confusing that we still don’t know how you moved the characters and parts was it just an animation that plays whilst the camera moves

  • @dooberloober
    @dooberloober 9 месяцев назад +1

    If anyone has problems with the script not loading even after agreeing to the plugin to change scripts, an easy fix for this is to drag it into starter player scripts instead of it being in start character. This resolved the problem for me and i hope i helped yall ^^ edit: mb switch it, it was originally in starter player but putting it in starter character scripts is what saved it :')

    • @Kira-ue5xu
      @Kira-ue5xu 8 месяцев назад +1

      Omg tysm

    • @dooberloober
      @dooberloober 8 месяцев назад

      @@Kira-ue5xu ofc!

    • @user-OnlyNick
      @user-OnlyNick 8 месяцев назад

      says an error with the sound data

    • @user-OnlyNick
      @user-OnlyNick 8 месяцев назад

      nevermind you are a genius and shall be loved

    • @dooberloober
      @dooberloober 8 месяцев назад

      glad to help!@@user-OnlyNick

  • @NurgamingYT
    @NurgamingYT Год назад +21

    Thanks! But i have one more question left: How do i add a black borders at the top and bottom of that cutscene? I'm just making a Back To The Future game and i wanna use that on the Hill Valley time travel part (the delorean time travels and then the next location loads)

    • @CornfloweRR
      @CornfloweRR Год назад +1

      i think u can just have 2 black uis on the top and bottom of the screen

    • @guccidogwater3798
      @guccidogwater3798 Год назад +4

      Hey! I know how to help you with that. You will need to insert a screenGui into the startergui folder. Name it cinematicGui. You will then insert 2 frames into the cinematicGui. Name these frames bb1, and bb2. Drag them to the top and bottom of your screen, and stretch them to fit what size you want. Then, you will need to click the cinematicGui, and in the “properties” tab, select “IgnoreGuiInset” and set it to unchecked. Then, you will need to make a script that will change the black bars transparency to 0 when the cinematic scene plays, and when it finishes, the script will need to set it to false. I hope this helped!

    • @Tornadox_1
      @Tornadox_1 9 месяцев назад

      Place a screen gui make it black delete all the text from the text gui and then resize it to however you want

    • @NurgamingYT
      @NurgamingYT 9 месяцев назад

      Tysm all for help!

  • @procat12
    @procat12 Год назад +5

    Thank you this helped me alot for making cutsenses

  • @EnchantedOwl397
    @EnchantedOwl397 Год назад +3

    I swaer, ive wached do many dang videos about this and not a single one works. I do exactly what they do too.

  • @badhandlename
    @badhandlename Год назад +2

    THANK U SO MUCH!

  • @BlueKingSheepRBLX
    @BlueKingSheepRBLX Год назад +3

    Thank you for this! it really helped!

  • @Trplati
    @Trplati Год назад +3

    Quick thing for yall, make sure to allow script changes, it will NOT work if you dont do so!

    • @sirbloxy007
      @sirbloxy007 Год назад

      how

    • @Trplati
      @Trplati Год назад

      @@sirbloxy007 it will have a popup

    • @ChannelDiscontinued243
      @ChannelDiscontinued243 9 месяцев назад

      after you do it, can you change it back?@@Trplati

    • @ahmedhamzamohammed8600
      @ahmedhamzamohammed8600 4 месяца назад +1

      But I have already downloaded it and I don’t remember if I have allowed it or not so how do I check if I have allowed it

  • @elusive1482
    @elusive1482 Год назад +1

    ur cutscene broke my game

  • @TheGuyThatKnewThe
    @TheGuyThatKnewThe 6 месяцев назад +1

    Yo, Harry, how can I make it so it happens in the middle of the game when a player steps on a Part or something like that?

  • @cobradevss
    @cobradevss Год назад +1

    THANK YOU SO MUCH BRO APPREICATE IT TONS!!!!

  • @ultimatefire1009
    @ultimatefire1009 Год назад +10

    is there a way to make it so like, instead of the camera moving to the next position, it just snaps to the next camera angle? cause thats what im looking for

    • @jcjrblx
      @jcjrblx Год назад +3

      change the duration of the transition to 0 lol?

    • @ultimatefire1009
      @ultimatefire1009 Год назад

      @@jcjrblx wouldn't that just make the cutscene camera angles not play at all?

    • @jcjrblx
      @jcjrblx Год назад +8

      ​@@ultimatefire1009 my mistake, I misunderstood. Getting the result you're seeking is relatively easy. all you need is a script with a function that changes the camera's subject(what the camera is facing). it'd look something like this:
      local Camera = game.Workspace.CurrentCamera -- variable for camera
      local player = game.Players.LocalPlayer.Character -- variable for player's character
      local function Cutscene(Subject1, subject2) -- add as many as you need
      Camera.CameraType = Enum.CameraType.Scriptable -- allows us to script the camera
      Camera.CameraSubject = Subject1 -- changing camera's subject
      Camera.CFrame = Subject1.CFrame -- making the camera align with subject

      wait(10)
      Camera.CameraSubject = subject2 -- after ten seconds the camera will snap to subject2
      wait(10)

      Camera.CameraType = Enum.CameraType.Custom -- reverting to the default CameraType
      Camera.CameraSubject = player -- setting the camera subject back to default
      end
      wait(5)
      Cutscene(PartA, partB, partC, etc) -- executing the function
      (put your parts in the parenthesis above, separate with commas)
      (make sure it's a LocalScript, make sure it's located in the StarterGui folder using the explorer)
      -- Hope this helps! I'm here to help if not
      -- JCJ:)

    • @joshua4721
      @joshua4721 Год назад

      @@jcjrblx scripting is so hard

    • @jcjrblx
      @jcjrblx Год назад

      @@joshua4721 I completely agree. you're in the right place though. the amt of free info and tools nowadays is incredible

  • @viravaishnavar2998
    @viravaishnavar2998 3 месяца назад

    Thanks

  • @MochaSugar50658
    @MochaSugar50658 Год назад +1

    I don’t get why mine isn’t working anymore… I use the exact same method and it doesn’t work anymore. This cutscene editor is clearing terrible, it’s only camera

  • @RedRare_
    @RedRare_ Год назад +3

    Can anyone tell me how do I make it so when a part is touched then it plays?

  • @iSimpel956
    @iSimpel956 Год назад

    Thanks i can use this in my fps game!

  • @Arishgamingchannel
    @Arishgamingchannel Год назад +1

    5:37 TEST FOR MY FRIENDS

  • @k.e1lyy
    @k.e1lyy Год назад +1

    Hey i have a question ; what if i wanna have me and my friend in the cutscene? thanks!
    (and text)

  • @Delta_Foxxs
    @Delta_Foxxs Год назад +1

    Helooooo do ya remember me? I used to be a fan since u had 1k subs! Glad to be back congrats on 19k!

    • @Disobeyedcrab
      @Disobeyedcrab  Год назад

      Hello OG fan

    • @Delta_Foxxs
      @Delta_Foxxs Год назад

      @@Disobeyedcrab I used to watch ur fps making vids ! They helped me so much! Ty for ur amazing vids comrade!👌

    • @Delta_Foxxs
      @Delta_Foxxs Год назад

      @@Disobeyedcrabur voice is so deep to me lol.. time flies so quickly!

    • @Disobeyedcrab
      @Disobeyedcrab  Год назад

      @@Delta_Foxxs Yes it does! It only seems like yesterday that I started the channel!

    • @Flammper
      @Flammper Год назад

      @@Disobeyedcrab Hey do you know how to make this so when I touch a part the cut scene plays?

  • @Ash-pu6bm
    @Ash-pu6bm Год назад +2

    thank you so much. I was trying to find out how to do for my game. I didn't know it was this easy. thank you discrab!!

  • @ExplosiveCreator
    @ExplosiveCreator Год назад +1

    I gotta ask.. HOW DO YOU GET THOSE GRAHPICS!!!

  • @sirappleshakez
    @sirappleshakez Год назад +2

    i wanna make that when i join it doesnt play, when i touch a specific part it work how i do that

  • @jerseyboy2008
    @jerseyboy2008 Год назад +4

    can you add the script in the description next time?
    thanks!

  • @explodeyblocks9748
    @explodeyblocks9748 Год назад

    thanks!

  • @mr.kobi23
    @mr.kobi23 Год назад +1

    thk bro it really helps

  • @BlushedElf
    @BlushedElf Год назад +3

    The script generated but when I join the game nothing happned

  • @spare_vr
    @spare_vr Год назад

    thx

  • @AspectylanOfficial
    @AspectylanOfficial Год назад

    Thank You

  • @IL_CAPITANO503
    @IL_CAPITANO503 Год назад +1

    this sucks, everytime i click generate script the script doesnt even generate. And when i go to the game the cutscene doesnt play

  • @Fifinama
    @Fifinama Год назад +6

    Is there a way to make it so the cutscene plays whenever a player touches a specific part?

    • @LithiumExile
      @LithiumExile Год назад +2

      Yeah in the cutscene folder theres the ”PlayWhenTouchingPart” so just change that

    • @vimiwalalala3284
      @vimiwalalala3284 10 месяцев назад

      @@LithiumExile what do i do after

    • @vimiwalalala3284
      @vimiwalalala3284 10 месяцев назад

      @@LithiumExile i mean like change what?

    • @LithiumExile
      @LithiumExile 10 месяцев назад

      @@vimiwalalala3284 when you click "playwhentouchingpart" in properties there should be a choice for which part. click that and then click on the part from the explorer. Now it should work.

  • @Cool100Fires
    @Cool100Fires Год назад +2

    good video! ill tell my friend about it, maybe he will implement it in his new game!

  • @brandon6114
    @brandon6114 Год назад

    hey disobeyedCrab do you still work on ValHeart?

  • @ethanandrews9495
    @ethanandrews9495 Год назад

    How do you add music without ruining it? Tryna be careful I want to make a Roblox movie, and kick the players out at the end but don’t know how to do that either but this tutorial was so much help

  • @AJGaming732
    @AJGaming732 7 месяцев назад

    Plugin "Codes Otaku Cutscene" was denied script injection permission. You can grant this permission in the Plugin Manager.

  • @xo2bl
    @xo2bl Год назад +2

    How do I exit the cutscene mode? Like how do I get back to the normal mode where I can click whatever I want and stuff?

    • @47deadmemesSL
      @47deadmemesSL Год назад

      click properties and search up visible! then make it invisible

  • @turbsyy
    @turbsyy Год назад

    How do make it once. I want it like gta5 first robbery scene😊

  • @abdelrahmanqe-5538
    @abdelrahmanqe-5538 Год назад

    noice potato Roblox studio dev was here 🙃

  • @darkbegin
    @darkbegin Год назад +1

    Is there a way to play cutscene when u touch a part in the workspace?

  • @thegamingkids2239
    @thegamingkids2239 Год назад +1

    the Generate script doesn't work may u explain?

  • @invincible_craft
    @invincible_craft Год назад +1

    How do you make it where it plays when a certain thing happens?

    • @Atoniobabosa
      @Atoniobabosa Год назад

      i would like to know too
      i want to make it play when a part is touched

    • @FKyler-bu3mb
      @FKyler-bu3mb Год назад

      @@Atoniobabosato do this watch another tutorial srry but it’s a whole another script

    • @MeijerBoy
      @MeijerBoy Год назад

      Trigger plate

  • @PB-2K
    @PB-2K 9 месяцев назад

    How do I make the cutseen like a bit after it starts

  • @Affinity_Official
    @Affinity_Official Год назад +1

    how do you add dialogue

  • @extremeprankster4335
    @extremeprankster4335 Год назад

    can i know where did you got the gun or the script for the gun function in the discord server?

  • @FatradGaming
    @FatradGaming Год назад +1

    wen i generate script it wont pop up in the starterplayer how to i fix that?

  • @thiaathebiggestsigma
    @thiaathebiggestsigma 11 месяцев назад

    Thanks for teaching me yo earned a sub❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤

  • @nasir173
    @nasir173 Год назад

    I’m making a game that’s full of cutscenes can this plugin generate a script where cutscenes happen at multiple times

  • @user-OnlyNick
    @user-OnlyNick 8 месяцев назад

    when i join the cutscene doesnt even start, even when i tried other methods like touching a part

  • @redtdr5361
    @redtdr5361 Год назад

    can u give us ur lighting settings

  • @jeoijo
    @jeoijo Год назад

    can i make a dialouge when the cutscene starts?

  • @EchosMarket
    @EchosMarket Год назад

    every camera switch it teleport back to the player then the camera what do i do to fix it?

  • @kenzi3365
    @kenzi3365 Год назад +1

    how do you get the sky?

  • @CruxFn73
    @CruxFn73 Год назад +1

    2:59 3:01 3:03

  • @thelostcat
    @thelostcat Год назад

    Can I move rigs in cutscene editor?

  • @adampigeonstudios7372
    @adampigeonstudios7372 Год назад

    wat about at a certan point the cutscene plays?

  • @ChannelDiscontinued243
    @ChannelDiscontinued243 9 месяцев назад

    Doesnt work for me, the script would never do anything, wouldnt print anything like errors or warning and wouldnt do the cutscene.

  • @Super-sun05
    @Super-sun05 3 месяца назад +1

    1+ sub

  • @twincube4254
    @twincube4254 Год назад

    Is there a way for the player character and custom characters be in the cutscene like piggy but the characters has animations

    • @dooberloober
      @dooberloober 9 месяцев назад

      it is possible but this is only for camera cutscenes, in order to add animations you will need a whole seperate script that plays the animation

  • @real_areracken
    @real_areracken Год назад

    is there any way i can make a first person cutscene

  • @gustloffshizukayamamoto4689
    @gustloffshizukayamamoto4689 Год назад

    How do I actually make the cutscene to a next point not like follow the lines

  • @jamieplayz247
    @jamieplayz247 Год назад

    Do u have to click

  • @emiphim
    @emiphim 10 месяцев назад

    you sound like faze banks

  • @popcatgaming9226
    @popcatgaming9226 Год назад

    i just installed it and accidently clicked deny to the scripts ;-;
    is there anything i can do to go back and change that? or am i just stuck

    • @mellowendacopia
      @mellowendacopia Год назад

      Plugin > My Plugins > the plugin > down it appear "Acces Deny of scripts or some thing lol" and click it

  • @GeorgeWashington880
    @GeorgeWashington880 Год назад

    Yes now I can make my game find your dad

  • @fatifatfat5163
    @fatifatfat5163 Год назад

    for me its glitched and it captures the camera position automaticly without me even clicking it

    • @BlushedElf
      @BlushedElf Год назад

      I think you turned on the record

  • @brqd4623
    @brqd4623 Год назад +1

    cool

  • @kachimark4177
    @kachimark4177 Год назад

    Cool Video 🤣🤣

  • @Lego10_DaMan
    @Lego10_DaMan Год назад

    thx for the things but when i press ''generate script'' it doesnt get into starterscripts. it just says cutscene will play when players join but it doesnt work either! can u please help me with it?

    • @Adamations14
      @Adamations14 Год назад +1

      same like it wont work for me either

    • @steak9586
      @steak9586 Год назад

      same

    • @dooberloober
      @dooberloober 9 месяцев назад

      if you had denied the plugin that could be one, but also i had the same problem and it had been fixed once i dragged it into starter player scripts

  • @AlexSAlves-jz5ll
    @AlexSAlves-jz5ll Год назад

    how to create flyrace style map?

  • @dogegammer7544
    @dogegammer7544 Год назад

    Yo can u teach us how to make kill streaks for fps

  • @jeuxvideo1043
    @jeuxvideo1043 Год назад

    It zooms without showing the cutscene and am freeze ofc

  • @TVE851
    @TVE851 Год назад

    when i click generate script it just doesnt do anything

  • @ShadowGaming-pp9ob
    @ShadowGaming-pp9ob Год назад

    The cutscene didn't play, Neither did the script pop up ;(

  • @RoseAnimatez
    @RoseAnimatez Год назад

    it dose not create the script for me do you know why???

  • @JanDymlovic
    @JanDymlovic Год назад

    nice but be carefull there is a option to play only once! turn it of

  • @JomarD30
    @JomarD30 Год назад

    lets gooo

  • @faintszn
    @faintszn Год назад

    IM OG

  • @D1orplays
    @D1orplays 10 месяцев назад

    Is it only me having a problem w the cutscene

  • @temelseyhan5134
    @temelseyhan5134 6 месяцев назад

    I Can't Find My Script

  • @Dudinurclass
    @Dudinurclass 9 месяцев назад

    Useage

  • @BranDaManGaming
    @BranDaManGaming Год назад

    it did not play help me

  • @Alno437
    @Alno437 10 месяцев назад

    The generated scripts dont work.. even tho I generate them

  • @Thanatos6000
    @Thanatos6000 Год назад +1

    It dosen't make me the scripts What Do I do?

    • @oly1325
      @oly1325 Год назад

      Go tho manage plugins and allow: script injection (it should say) not allowed. After you've done that it should make a script!

    • @Thanatos6000
      @Thanatos6000 Год назад

      @@oly1325 Thanks!

    • @Thanatos6000
      @Thanatos6000 Год назад

      @@oly1325 it Worked

    • @Azxs.amp.
      @Azxs.amp. Год назад

      ​@@oly1325gow

    • @Azxs.amp.
      @Azxs.amp. Год назад

      ​@@oly1325how

  • @feroce77
    @feroce77 7 месяцев назад

    It doesen't play?

  • @r06yes29
    @r06yes29 Год назад

    it spaws ranom camera for me

  • @aidennoah5559
    @aidennoah5559 Год назад

    it wont generate the script

  • @ashleywilliamson2978
    @ashleywilliamson2978 10 месяцев назад

    Does not work for me, followed all the steps

  • @SgRulz
    @SgRulz Год назад

    the script didnt generate!

  • @pentioxdx
    @pentioxdx 10 месяцев назад

    RIp it doesn't work anymore

  • @linuskat6446
    @linuskat6446 Год назад +1

    BRO YOU STOLE A THUMBNAIL

  • @AgentX-ww6vk
    @AgentX-ww6vk Год назад

    when i tried it my entire game broke i dont trust this tbh

  • @MitchRice-n1o
    @MitchRice-n1o Год назад

    Bruh I have Roblox studio

  • @Ifitaintgolditsbad
    @Ifitaintgolditsbad 11 месяцев назад

    It’s hard

  • @flameayaan5995
    @flameayaan5995 Год назад

    Hhj🎉

  • @Sejdkkk
    @Sejdkkk Год назад

    That aint even ur cutscene in the thumbnail kid

  • @popcatgaming9226
    @popcatgaming9226 Год назад

    it doesnt work bro
    you're lying to kids it does not work

  • @cohrul241
    @cohrul241 10 месяцев назад

    L Video doesnt work

  • @popcatgaming9226
    @popcatgaming9226 Год назад

    IT LITERALLY DOESNT WORK
    STOP LYING
    IF YOU'RE GONNA POST A VIDEO
    MAKE IT SO IT ISNT A LIE

  • @AMBATUKAM.._
    @AMBATUKAM.._ Год назад

    Second

  • @blade1592
    @blade1592 11 месяцев назад

    bro 1:10:00 so so hard man ong