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

How do I attach a brick to my torso, and make it move where ever I go?

Asked by
phriol 25
9 years ago

I want to attach a brick to my torso and make it look like it's not attached to me, but will move where ever I go. I'm stuck on how to do this..

2
Use welds! Validark 1580 — 9y

2 answers

Log in to vote
0
Answered by 9 years ago

You can use welds, or if you don't want to attach it directly, use like BodyPosition and add the position you want to your position to make it follow you,

ex... c = Vector3.new(2,0,0) BodyPosition.position = person.Position + c

Ad
Log in to vote
0
Answered by
crut24 50
9 years ago

Use a simple welding script

1local torso = game.Workspace.Player1.Torso
2local part = Instance.new("Part", game.Workspace)
3local weld = Instance.new("Weld", torso)
4weld.Part0 = torso
5weld.Part1 = part

Thats it :D Good luck

Answer this question