I can make the a part "Red" point towards another part "Green" using the Red parts front face but how do I get the same result but using another face of Red for example the left face.
local Green = workspace:WaitForChild("Green") local Red = workspace:WaitForChild("Red") while wait(0.1) do Red.CFrame = CFrame.new(Red.Position, Green.Position) end
Is this what you were looking for:
local Green = workspace:WaitForChild("Green") local Red = workspace:WaitForChild("Red") while wait(0.1) do Red.CFrame = CFrame.new(Red.Position, Green.Position) * CFrame.Angles(0, math.rad(90), 0) end