Welding Parts To A Torso

Hello,

I am currently working on making a laser tag game, and I am trying to create a vest/target part. This target or vest should be on the player’s back and one on the front of the player’s torso. How can I do this?

Thanks,

Something like this, if this is put in your character and there’s a part tnamed “Vest” in ReplicatedStorage

Welds will by default attach things pretty well, but this won’t work if your vest is a model or isn’t aligned right (you’d have to do some transformations)

local character = script.Parent
local hrp = character:WaitForChild("HumanoidRootPart")
local vest = game.ReplicatedStorage.Vest:Clone() --depends where you keep your vest part
vest.Parent = character
local weld = Instance.new("Weld")
weld.Part0 = hrp
weld.Part1 = vest
weld.Parent = character
1 Like