WeldConstraint Stops Character from moving?
Asked by
CPF2 406
7 years ago Edited 7 years ago
1 | local char = player.Character or player.CharacterAdded:wait() |
2 | local Stand = SS:FindFirstChild( 'Stands' ):FindFirstChild( 'StandTest' ):clone() |
4 | local PlayerRoot = char:FindFirstChild( 'HumanoidRootPart' ) |
5 | local StandRoot = Stand:FindFirstChild( "HumanoidRootPart" ) |
6 | StandRoot.CFrame = PlayerRoot.CFrame * CFrame.new(Vector 3. new( 2 , 0 , 2 )) |
7 | local Weld = Instance.new( "WeldConstraint" ) Weld.Parent = PlayerRoot Weld.Part 0 = PlayerRoot Weld.Part 1 = StandRoot Weld.Enabled = true |
Gif
(When I stop in the gif, i can't move, no matter what i do)