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)
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!
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 :')
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
@@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:)
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
@@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.
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
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?
Enjoy
😂
Help me, the script won't generate and I'm getting kinda angry
why script not generated?!!?!?!?!?!?!?
Thank you so much for making this vid I was stuck on animations for ages
the script wont generate
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
Yea
5:37 TEST FOR MY FRIENDS
Thank you this helped me alot for making cutsenses
I swaer, ive wached do many dang videos about this and not a single one works. I do exactly what they do too.
samee
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)
i think u can just have 2 black uis on the top and bottom of the screen
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!
Place a screen gui make it black delete all the text from the text gui and then resize it to however you want
Tysm all for help!
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 :')
Omg tysm
@@Kira-ue5xu ofc!
says an error with the sound data
nevermind you are a genius and shall be loved
glad to help!@@user-OnlyNick
THANK U SO MUCH!
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?
Quick thing for yall, make sure to allow script changes, it will NOT work if you dont do so!
how
@@sirbloxy007 it will have a popup
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
Thank you for this! it really helped!
ur cutscene broke my game
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
change the duration of the transition to 0 lol?
@@jcjrblx wouldn't that just make the cutscene camera angles not play at all?
@@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:)
@@jcjrblx scripting is so hard
@@joshua4721 I completely agree. you're in the right place though. the amt of free info and tools nowadays is incredible
Can anyone tell me how do I make it so when a part is touched then it plays?
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
Helooooo do ya remember me? I used to be a fan since u had 1k subs! Glad to be back congrats on 19k!
Hello OG fan
@@Disobeyedcrab I used to watch ur fps making vids ! They helped me so much! Ty for ur amazing vids comrade!👌
@@Disobeyedcrabur voice is so deep to me lol.. time flies so quickly!
@@Delta_Foxxs Yes it does! It only seems like yesterday that I started the channel!
@@Disobeyedcrab Hey do you know how to make this so when I touch a part the cut scene plays?
this sucks, everytime i click generate script the script doesnt even generate. And when i go to the game the cutscene doesnt play
THANK YOU SO MUCH BRO APPREICATE IT TONS!!!!
i wanna make that when i join it doesnt play, when i touch a specific part it work how i do that
same
Hey i have a question ; what if i wanna have me and my friend in the cutscene? thanks!
(and text)
can you add the script in the description next time?
thanks!
noice potato Roblox studio dev was here 🙃
Thanks i can use this in my fps game!
The script generated but when I join the game nothing happned
SAME!
Thanks
thanks!
Is there a way to make it so the cutscene plays whenever a player touches a specific part?
Yeah in the cutscene folder theres the ”PlayWhenTouchingPart” so just change that
@@LithiumExile what do i do after
@@LithiumExile i mean like change what?
@@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.
thk bro it really helps
Plugin "Codes Otaku Cutscene" was denied script injection permission. You can grant this permission in the Plugin Manager.
I gotta ask.. HOW DO YOU GET THOSE GRAHPICS!!!
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!!
when i join the cutscene doesnt even start, even when i tried other methods like touching a part
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?
click properties and search up visible! then make it invisible
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
wen i generate script it wont pop up in the starterplayer how to i fix that?
Is there a way to play cutscene when u touch a part in the workspace?
how do you add dialogue
the Generate script doesn't work may u explain?
How do make it once. I want it like gta5 first robbery scene😊
How do I make the cutseen like a bit after it starts
How do you make it where it plays when a certain thing happens?
i would like to know too
i want to make it play when a part is touched
@@Atoniobabosato do this watch another tutorial srry but it’s a whole another script
Trigger plate
good video! ill tell my friend about it, maybe he will implement it in his new game!
how do you get the sky?
I’m making a game that’s full of cutscenes can this plugin generate a script where cutscenes happen at multiple times
every camera switch it teleport back to the player then the camera what do i do to fix it?
Thank You
hey disobeyedCrab do you still work on ValHeart?
can i make a dialouge when the cutscene starts?
Cool Video 🤣🤣
can u give us ur lighting settings
can i know where did you got the gun or the script for the gun function in the discord server?
Thanks for teaching me yo earned a sub❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤
thx
How do I actually make the cutscene to a next point not like follow the lines
Is there a way for the player character and custom characters be in the cutscene like piggy but the characters has animations
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
The cutscene didn't play, Neither did the script pop up ;(
is there any way i can make a first person cutscene
Can I move rigs in cutscene editor?
It zooms without showing the cutscene and am freeze ofc
when i click generate script it just doesnt do anything
for me its glitched and it captures the camera position automaticly without me even clicking it
I think you turned on the record
Yes now I can make my game find your dad
it dose not create the script for me do you know why???
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?
same like it wont work for me either
same
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
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
Plugin > My Plugins > the plugin > down it appear "Acces Deny of scripts or some thing lol" and click it
how to create flyrace style map?
2:59 3:01 3:03
Do u have to click
Yo can u teach us how to make kill streaks for fps
Maybe in the future
It dosen't make me the scripts What Do I do?
Go tho manage plugins and allow: script injection (it should say) not allowed. After you've done that it should make a script!
@@oly1325 Thanks!
@@oly1325 it Worked
@@oly1325gow
@@oly1325how
The generated scripts dont work.. even tho I generate them
it did not play help me
nice but be carefull there is a option to play only once! turn it of
you sound like faze banks
I Can't Find My Script
Is it only me having a problem w the cutscene
it spaws ranom camera for me
cool
cool
It doesen't play?
it wont generate the script
IM OG
the script didnt generate!
1+ sub
Does not work for me, followed all the steps
RIp it doesn't work anymore
BRO YOU STOLE A THUMBNAIL
lets gooo
Useage
That aint even ur cutscene in the thumbnail kid
when i tried it my entire game broke i dont trust this tbh
Bruh I have Roblox studio
It’s hard
it doesnt work bro
you're lying to kids it does not work
L Video doesnt work
IT LITERALLY DOESNT WORK
STOP LYING
IF YOU'RE GONNA POST A VIDEO
MAKE IT SO IT ISNT A LIE
it does work you idiot
bro 1:10:00 so so hard man ong
Hhj🎉
Second
it didnt work :( so i disliked
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