You can write your topic however you want, but you need to answer these questions:
-
What do you want to achieve? Keep it simple and clear!
i wanted to make the head follow the other way and not the camera from the back (the camera where u watch the chacater) -
What is the issue? Include screenshots / videos if possible!
video:
-
What solutions have you tried so far? Did you look for solutions on the Developer Hub?
no cuz idk how to code :c
After that, you should include more details if you have any. Try to make your topic as descriptive as possible, so that it’s easier for people to help you!
this is a script
script.Parent.LookCamera.OnServerEvent:Connect(function(mh,CameraDirection52)
if Player:FindFirstChild("Humanoid") then
if Player:FindFirstChild("Humanoid").Health ~= 0 then
Player.HeadLookPosition.Value = Vector3.new(CameraDirection52.X,CameraDirection52.Y,CameraDirection52.Z)
end
end
end)
this is a local script
repeat wait(.1)
until game.Players.LocalPlayer.Character:FindFirstChild("Head")
game["Run Service"].RenderStepped:Connect(function()
local camera = workspace.CurrentCamera.CFrame.Position
local camera52 = workspace.CurrentCamera
script.Parent.LookCamera:FireServer(camera)
end)
any help would be appreciated