i know this is sorta a duplicate but all the posts i found made no sense
so i have a while loop that makes an npc look at the player but if the player goes up and down this happens
the npc goes up and down looking at the player too which looks really weird
how could i make it not go up and down? just x and z
sorry for the rather bad explanation
local at = character.PrimaryPart.Position
local lookAt = npc.PrimaryPart.Position
-- change lookAt Y axis to be the same as at
lookAt = Vector3.new(lookAt.X, at.Y, lookAt.Z)
character.PrimaryPart.CFrame = CFrame.lookAt(at, lookAt)
local at = character.PrimaryPart.Position
local lookAt = npc.PrimaryPart.Position
-- change lookAt Y axis to be the same as at
lookAt = Vector3.new(lookAt.X, at.Y, lookAt.Z)
-- if the distance is less then 0.5 studs exit
if (lookAt - at).Magnitude < 0.5 then return end
character.PrimaryPart.CFrame = CFrame.lookAt(at, lookAt)