So, I recently discovered that you can place objects a certain space away from a Position (Vector3 value).
For example, if you wanted to place a brick on your characters head, as a function, you would do
a = Instance.new("Part", game.Workspace)
a.Position = game.Workspace.YOURNAMEHERE.Head.Position + Vector3.new(0,1,0)
But the question is, is there any other way to do something like this without adding a Vector3 value to the head position? |