How to make the camera stay in front of the head at all times?
I have a LocalScript where the camera follows the head instead of the HumanoidRootPart.
Here is the script:
02 | local plr = game.Players.LocalPlayer |
03 | local char = plr.CharacterAdded:wait() |
04 | local hum = char:WaitForChild( "Humanoid" ) |
05 | local rootpart,head = char:WaitForChild( "HumanoidRootPart" ),char:WaitForChild( "Head" ) |
06 | game:GetService( "RunService" ):BindToRenderStep( "CameraOffset" ,Enum.RenderPriority.Camera.Value- 1 , function () |
07 | hum.CameraOffset = (rootpart.CFrame+Vector 3. new( 0 , 1.5 , 0 )):pointToObjectSpace(head.CFrame.p) |
It works fine, so i implemented a script that allows to see your body in first person but then this happens:
https://ibb.co/GCXz1CL
So i edited the offset here:
1 | hum.CameraOffset = (rootpart.CFrame+Vector 3. new( 1 , 1.5 , 0 )):pointToObjectSpace(head.CFrame.p) |
But then this happens:
https://gfycat.com/somberwearycornsnake
There is a way to solve this problem so that the camera stays in front of the head at all times?