How can I find a players position

Im trying to make a placement system so that when button is clicked a model is made infront of the player.
Im having trouble trying to find the players position. this is something ive never worked with before since I dont have much experience coding. Any help would be great.

Screenshots:
image
image
image

1 Like

you would do

player.Character.HumanoidRootPart.CFrame.Position

to find the position of the player

3 Likes

the player itself is not a physical object, and does not have a position. consider changing that part to a part of the player character.

i.e

Box.Position = player.position

to

Box.Position = player.Character.HumanoidRootPart.Position
2 Likes