How would I make a cutscene like how it is in apex when you get near some one you press a button and do a cool finisher.
- Make Camera rig
- Animate it (In blender for example)
- Upload anim
- Play anim and then “weld” camera to rig by renderstepped loop (from localscript)
I don’t know how to do 3 out of 4 things on this list better start learning also
how would I make it be like apex legends for example when it would effect the person your wrecking
Remote events its your best friend for this problem
can you tell me how do you do it in blender and import it to roblox studio? its been bugging me for a while now since I have the same question but can’t find a source
Pretty basic, First you should learn using Tween Service. It’s not that hard.
When you are starting the cutscane, make the
Camera.CameraType = Enum.CameraType.Scriptable
This will make it so camera can be controlled trough a local script.
Then you can tween the Local Camera’s CFrame using Tween Service. (game.Workspace.Camera)
Example for tweening camera to a part:
local Duration = 2
game.Workspace.Camera.CameraType = Enum.CameraType.Scriptable
TweenService:Create(game.Workspace.Camera, TweenInfo.new(Duration), {CFrame = game.Workspace.Part.CFrame}):Play()
wait(Duration)
game.Workspace.Camera.CameraType = Enum.CameraType.Custom
Camera Wiki: Camera | Roblox Creator Documentation
TweenService Wiki: TweenService | Roblox Creator Documentation