What I want to achieve is already in the title, and here is a video to better show it:
Have a nice day.
What I want to achieve is already in the title, and here is a video to better show it:
Have a nice day.
What do you mean by the camera following the head? It already follows the whole character, as ShiftLock is turned on. Do you want to make it rotate where the head rotates, even if that doesn’t match the HumanoidRootPart
’s orientation?
Are you trying to just set the camera’s CameraSubject? If so, here is a script.
game.Players.PlayerAdded:Connect(function(plr)
plr.CharacterAdded:Connect(function(char)
local Camera = workspace.CurrentCamera
Camera.CameraSubject = char:WaitForChild("Head")
end)
end)
This would be local as all camera movement is local.
yea it would work but shiftlock doesnt anymore
Maybe make a custom shift lock script to account for the head and not the humanoid?
I also found this forum.
https://devforum.roblox.com/t/shift-lock-script/1380487
This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.