How do I make this cinematic effect?

I was wondering, how do I make the camera follow the bait of the rod?

You basically set the camera relative to the rod part.

RunService.Heartbeat:Connect(function()
 workspace.CurrentCamera.Position = part.Position + Vector3.new(10,10,0) --Sets camera 10std up and 10std sideway
workspace.CurrentCamera.CFrame = CFrame.LookAt(workspace.CurrentCamera.CFrame,part.CFrame) --makes the cam look at the rod

end)

Run this on client and only when needed. Make sure to change the cameratype to scriptable

Another approach is to set the camera subject to the rod.

workspace.CurrentCamera.CameraSubject = part
1 Like