How can I make the front face face the person

I’m tweening this pet and i’m trying to get it to face the person when its walking

local tween = tweenService:Create(petClone.PrimaryPart, tweenInfo, {CFrame = CFrame.new(Head.Position, HMR.Position)})

try

local tween = tweenService:Create(petClone.PrimaryPart, tweenInfo, {CFrame = CFrame.new(Head.Position, HMR.Position)}) * CFrame.Angles(0,math.rad(180),math.rad(180))

tell me if it works or doesn’t

signed,
X

1 Like

Thanks it works if I add math.rad(90) to the x axis

No problem man, I kinda forgot which axis is which. :slight_smile: :+1:

signed,
X