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
8 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 — 8y

2 answers

Log in to vote
0
Answered by 8 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
8 years ago

Use a simple welding script

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

Thats it :D Good luck

Answer this question