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
1 | local torso = game.Workspace.Player 1. Torso |
2 | local part = Instance.new( "Part" , game.Workspace) |
3 | local weld = Instance.new( "Weld" , torso) |
4 | weld.Part 0 = torso |
5 | weld.Part 1 = part |
Thats it :D Good luck