Really confused why its not teleporting this part to the characters position?

I know this sounds stupid but for some reason the part wont teleport? Has my mine gone blank

local pos = game.Workspace[player.Name].HumanoidRootPart.Position
wait()
Drop.Position = Vector3.new(pos)

it’s already a Vector3.

Drop.Position = pos

You’re attempting to construct a Vector3 out of another. If no arguments or improper arguments are received, the constructor just returns a vector at the origin.

2 Likes

Such an stupid mistake, thanks.