How would I get this part to appear 5 studs in front of the players root

So basically I need this part to spawn in front of the player.
I have a script BUT
Danggit another but . . .

Its spawning in the void. Can anyone help me with this?

local po2 = root.CFrame * CFrame.new(Vector3.new(0,0,5)) -- this is the position

And for your info yes the root is where it should be and not in the void

local po2 = root.CFrame + root.CFrame.LookVector * Vector3.new(5, 0, 5)

local pos = root.CFrame * CFrame.new(Vector3.new(0,0,-5))

1 Like

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.