Uhm, It wont work can anyone help my part is in the workspace called sword, and the model is an union inside the group. So where am I suppose to put the script?
script:
function WeldToBack(part,torso)
local weld = Instance.new("ManualWeld",part)
weld.Part0 = part
weld.Part1 = torso
weld.C0 = torso.CFrame * CFrame.new(0,0,-2) *CFrame.Angles(0,0,0)
end
WeldToBack(workspace.Sword.Handle,player.Character.UpperTorso) |