so I want to make it so a part will point in the direction of which the camera is facing. I dont know how to do that soooo… how?
Use CFrame.lookAlong
. It will make a position face towards a certain direction.
Code:
local camera = workspace.CurrentCamera
local part = workspace.Part
part.CFrame = CFrame.lookAlong(part.Position, camera.CFrame.LookVector)
This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.