Making a watch command

Hi all,
I’m currently working on my custom admin for my game and am working on a watch command, this is my first time messing around with a players camera and I have encountered this issue below:
https://gyazo.com/dca0fa64d76c74e2094980b03282dd5f
This ends up breaking the camera and prevents the player from going into first person as you cannot look around and “steer” your character from first person.

If anyone knows the fix for this I’d appreciate it.

This is the code I am currently using to change the camera:

local cam = workspace.CurrentCamera

cam.CameraSubject = TargetCharacter.Head

Change this line:

cam.CameraSubject = TargetCharacter.Humanoid
-- or just the character model itself

The ‘TargetCharacter’ variable should be the player’s character model.

3 Likes