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

WeldConstraint Stops Character from moving?

Asked by
CPF2 406 Moderation Voter
7 years ago
Edited 7 years ago
1local char = player.Character or player.CharacterAdded:wait()
2local Stand = SS:FindFirstChild('Stands'):FindFirstChild('StandTest'):clone()
3Stand.Parent = char
4local PlayerRoot = char:FindFirstChild('HumanoidRootPart')
5local StandRoot = Stand:FindFirstChild("HumanoidRootPart")
6StandRoot.CFrame = PlayerRoot.CFrame * CFrame.new(Vector3.new(2,0,2))
7local Weld = Instance.new("WeldConstraint") Weld.Parent = PlayerRoot Weld.Part0 = PlayerRoot Weld.Part1 = StandRoot Weld.Enabled = true

Gif

(When I stop in the gif, i can't move, no matter what i do)

Answer this question