So i have this meshpart and i want it to face the player but it faces the player on the front surface and it make's the mesh part look like it's pointing down?
model.part.CFrame = CFrame.new(model.part.Position,torso.Position) -- My code i use to turn the meshpart
Is it impossible to make the part face the player from the bottom surface?
I want a negative -lookvector impossible?
You would need to rotate it after:
model.part.CFrame = CFrame.new(model.part.Position,torso.Position)*CFrame.Angles(X,Y,Z)
replace X,Y,Z with values of your choice