How to make cutscenes

Hi guys, i wonder how to make a cutscene that will play for example in front of the player, starting from a moon file, i’ve alr made a system to play it, but idk how to actually start in front of the player and not in the spot where i’ve made the camera anim on moon

4 Likes

I just figured it out myself, for anyone wondering I did this:



-- Inside the Render Stepped Connection (to iterate on all frames)

-- Calculate the offset (the difference between the Cframe of the rig where i've
-- made the animation, and the CFrame of the camera
local cameraOffset = secondPartRig.HumanoidRootPart.CFrame:inverse() * NeededFrame.Value

-- use the offset to obtain the CFrame of the camera in front of the 
-- player (target is the Character RootPart)
local cameraBCFrame =Target.CFrame * cameraOffset


-- Just set the cFrame
Camera.CFrame = cameraBCFrame
1 Like

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.