Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

Need Help Welding To Body, It Keeps moving around(clip attached)??

Asked by 4 years ago

https://imgur.com/a/eExZeax

Im not sure why this is happening? Any help is appreciated. Here is the welding Script.

    player.Character.HumanoidRootPart.Anchored = true
    local newArmor = player.Backpack:FindFirstChild(armorName):Clone()
    newArmor.Anchored = true
    newArmor.Parent = player.Character
    local weld = Instance.new("Weld",newArmor)
    weld.Part0 = newArmor
    weld.Part1 = player.Character.HumanoidRootPart
    newArmor.Anchored = false
    player.Character.HumanoidRootPart.Anchored = false

1 answer

Log in to vote
0
Answered by 4 years ago

Sorry For Wasting Everybodys time :/.

I Just figured it out! I will leave it up just incase someone else runs into problem :).

What you have to do is not weld to HumanoidRootPart but rather UpperTorso!!

Ad

Answer this question