How do I make a part stare at a part?

You can use CFrame.lookAt for this.

Could you give me an example?

local staringPart = YourPart
local stareAtPart = YourOtherPart

staringPart.CFrame = CFrame.lookAt(staringPart.Position, stareAtPart.Position)
1 Like