How would I orient a projecitile facing mouse.Hit?

You can write your topic however you want, but you need to answer these questions:

  1. What do you want to achieve? Keep it simple and clear!
    I have been searching for hours on how to orient a projectile, but none seem to work for mouse.Hit
  2. What is the issue? Include screenshots / videos if possible!
    I can’t seem to find a solution
  3. What solutions have you tried so far? Did you look for solutions on the Developer Hub?
    I’ve tried using CFrame to orient and Orientation to orient it too.
2 Likes

You can use CFrame to do this. Just do this:

local newCFrame = CFrame.new(projectile.CFrame, mouse.Hit)
projectile.CFrame = newCFrame
1 Like

Or you could CFrame.LookAt(origin,target). Dont copy this lmao