Does anyone know how to do this? I’m a scripter but not a professional; I just need a little help on how to make this script. What I want to find out is how to make the camera follow the head when it moves. I hope you reply.
Game: Neighbourhood war
3 Likes
Someone has already asked for this before. You can see their solution here.
I’ve been working on a script where Arms, torso, and the characters head follows the mouse
The issue I am experiencing is that the script i have already moves the whole character.
local plr = game:GetService("Players").LocalPlayer
game:GetService("RunService").RenderStepped:connect(function()
if plr.Character then
local root = plr.Character.HumanoidRootPart
if root then
root.CFrame = CFrame.new(root.CFrame.p,root.CFrame.p+Vector3.new(cam.CFrame.lookVector.X,0,cam.CFrame.lookVector.Z))…
1 Like
Well I mean the camera focuses on the head, and when the head looks up, the camera goes back. When the head goes forward, the camera goes down.
1 Like