How to make a CUTSCENE│Roblox Studio Tutorial

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

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

  • @Disobeyedcrab
    @Disobeyedcrab  2 года назад +42

    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 Год назад +28

    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

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

    5:37 TEST FOR MY FRIENDS

  • @procat12
    @procat12 2 года назад +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.

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

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

      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 11 месяцев назад

      Tysm all for help!

  • @dooberloober
    @dooberloober 11 месяцев назад +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 11 месяцев назад +1

      Omg tysm

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

      @@Kira-ue5xu ofc!

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

      says an error with the sound data

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

      nevermind you are a genius and shall be loved

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

      glad to help!@@user-OnlyNick

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

    THANK U SO MUCH!

  • @MentalySlow
    @MentalySlow 8 месяцев назад +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?

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

    • @ahmedhamzamohammed8600
      @ahmedhamzamohammed8600 7 месяцев назад +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

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

    Thank you for this! it really helped!

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

    ur cutscene broke my game

  • @ultimatefire1009
    @ultimatefire1009 2 года назад +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 2 года назад +3

      change the duration of the transition to 0 lol?

    • @ultimatefire1009
      @ultimatefire1009 2 года назад

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

    • @jcjrblx
      @jcjrblx 2 года назад +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

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

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

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

  • @Delta_Foxxs
    @Delta_Foxxs 2 года назад +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  2 года назад

      Hello OG fan

    • @Delta_Foxxs
      @Delta_Foxxs 2 года назад

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

    • @Delta_Foxxs
      @Delta_Foxxs 2 года назад

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

    • @Disobeyedcrab
      @Disobeyedcrab  2 года назад

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

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

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

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

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

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

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

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

  • @abdelrahmanqe-5538
    @abdelrahmanqe-5538 2 года назад

    noice potato Roblox studio dev was here 🙃

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

    Thanks i can use this in my fps game!

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

    The script generated but when I join the game nothing happned

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

    Thanks

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

    thanks!

  • @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 Год назад

      @@LithiumExile what do i do after

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

      @@LithiumExile i mean like change what?

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

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

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

    thk bro it really helps

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

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

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

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

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

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

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

  • @ymmt7
    @ymmt7 Год назад +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

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

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

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

  • @darkbegin
    @darkbegin 2 года назад +1

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

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

    how do you add dialogue

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

    the Generate script doesn't work may u explain?

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

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

  • @PB-2K
    @PB-2K Год назад

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

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

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

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

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

    how do you get the sky?

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

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

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

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

  • @AspectylanOfficial
    @AspectylanOfficial 2 года назад

    Thank You

  • @brandon6114
    @brandon6114 2 года назад

    hey disobeyedCrab do you still work on ValHeart?

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

    can i make a dialouge when the cutscene starts?

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

    Cool Video 🤣🤣

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

    can u give us ur lighting settings

  • @extremeprankster4335
    @extremeprankster4335 2 года назад

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

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

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

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

    thx

  • @gustloffshizukayamamoto4689
    @gustloffshizukayamamoto4689 2 года назад

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

  • @twincube4254
    @twincube4254 2 года назад

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

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

      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

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

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

  • @real_areracken
    @real_areracken 2 года назад

    is there any way i can make a first person cutscene

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

    Can I move rigs in cutscene editor?

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

    It zooms without showing the cutscene and am freeze ofc

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

    when i click generate script it just doesnt do anything

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

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

    Yes now I can make my game find your dad

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

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

  • @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 11 месяцев назад

      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

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

  • @AlexSAlves-jz5ll
    @AlexSAlves-jz5ll 2 года назад

    how to create flyrace style map?

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

    2:59 3:01 3:03

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

    Do u have to click

  • @dogegammer7544
    @dogegammer7544 2 года назад

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

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

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

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

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

    it did not play help me

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

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

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

    you sound like faze banks

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

    I Can't Find My Script

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

    Is it only me having a problem w the cutscene

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

    it spaws ranom camera for me

  • @brqd4623
    @brqd4623 2 года назад +1

    cool

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

    It doesen't play?

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

    it wont generate the script

  • @pi33re
    @pi33re 2 года назад

    IM OG

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

    the script didnt generate!

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

    1+ sub

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

    Does not work for me, followed all the steps

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

    RIp it doesn't work anymore

  • @linuskat6446
    @linuskat6446 2 года назад +1

    BRO YOU STOLE A THUMBNAIL

  • @JomarD30
    @JomarD30 2 года назад

    lets gooo

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

    Useage

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

    That aint even ur cutscene in the thumbnail kid

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

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

    It’s hard

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

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

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

    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

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

    bro 1:10:00 so so hard man ong

  • @flameayaan5995
    @flameayaan5995 2 года назад

    Hhj🎉

  • @AMBATUKAM.._
    @AMBATUKAM.._ 2 года назад

    Second

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

    it didnt work :( so i disliked

  • @SuperNecroticOH
    @SuperNecroticOH 2 года назад +1

    any new roblox developers who dont have much experience such as me?
    add me! we can work together on a game, my name is AGratefulDev