How would I make your camera view like your head?

I wanna make it so that if your head/body modes during like an animation, it also moves your camera, kinda like this:

How would I implement this?

2 Likes

I think you would need to set the Camera’s CameraSubject to the characters head.

workspace.CurrentCamera.CameraSubject = Character.Head

But this will mess up the default camera functions which means you would need to make systems to adapt to the change. One of the problems is the character not rotating towards where the camera is pointing when in firstperson/shiftlock.

2 Likes

In Studio, the StarterPlayer object contains a number of properties that affects the user’s camera. The CameraMode property determines how the camera behaves.

  1. Select StarterPlayer

alt

  1. Change CameraMode to LockFirstPerson. This ensures the user’s camera doesn’t move away from their head.

alt

  1. Playtest to see the first person camera in action.

Read more about controlling the user’s camera here: Controlling the User's Camera | Documentation - Roblox Creator Hub