How do I get this weld code to work in a function?
So, I had some code that is meant to weld an object to the player whenever they touch it, I tried to modify an older code so that it is easier to modify for each object I need to weld, but when I touch the object, it doesn't do anything.
Here is the code:
01 | function WeldEnable (Prt 0 , Prt 1 , x, y, z) |
02 | Prt 1. CFrame = Prt 0. CFrame * CFrame.new(x, y, z) |
03 | weld = Instance.new( "Weld" ) |
05 | weld.C 0 = Prt 0. CFrame:Inverse() |
07 | weld.C 1 = Prt 1. CFrame:Inverse() |
09 | weld.Parent.Anchored = false |
12 | Target = workspace.CoolOlivie 057 |
13 | Targetpart = "LeftLowerLeg" |
15 | script.Parent.Touched:Connect( function (hit) |
16 | humanoid = hit.Parent:findFirstChild( "Humanoid" ) |
18 | if script.Parent:FindFirstChild( "weld" ) = = nil then |
19 | WeldEnable(Target:FindFirstChild(Targetpart), script.Parent, 0 , - 0.0965 , 0 ) |
Here is the code before it was modified:
01 | script.Parent.Touched:Connect( function (hit) |
02 | humanoid = hit.Parent:findFirstChild( "Humanoid" ) |
04 | if script.Parent:FindFirstChild( "weld" ) = = nil then |
05 | leftLowerLeg = hit.Parent.LeftLowerLeg |
06 | script.Parent.CFrame = leftLowerLeg.CFrame * CFrame.new( 0 , - 0.0965 , 0 ) |
07 | weld = Instance.new( "Weld" ) |
08 | weld.Part 0 = leftLowerLeg |
09 | weld.C 0 = leftLowerLeg.CFrame:Inverse() |
10 | weld.Part 1 = script.Parent |
11 | weld.C 1 = script.Parent.CFrame:Inverse() |
12 | weld.Parent = script.Parent |
13 | weld.Parent.Anchored = false |
BTW, the unmodified code works.