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..
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
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