Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

Creating a part on a characters position?

Asked by
816i 19
7 years ago

Im trying to create a part on a player's torso/position and am getting no where. I thought

v.Position = Vector3.new(game.Players.LocalPlayer.Character.Torso.Position)

would work but it doesn't, how can I make the part be created in the player's torso?

0
im not the smartest scripter 816i 19 — 7y
0
and yes, in the full script v is defined 816i 19 — 7y

1 answer

Log in to vote
1
Answered by 7 years ago

You don't need Vector3.new, Just set the Part position to the torso position.

v.Position = game.Players.LocalPlayer.Character.Torso.Position
Ad

Answer this question