I have a script that is supposed to place a brick above and in front from the player's torso. I believe I can achieve this with LookVectors, but I every attempt doesn't work. Any help is appreciated.
You can reference a parts "front" side by using cframe look vector like this:
local studsForward = 10 local createdPart = Instance.new("Part", workspace) createdPart.CFrame = Part.CFrame + Part.CFrame.LookVector * studsForward -- add 10 studs above with Vector3 createdPart.Position = createdPart.Position + Vector3.new(0,10, 0)