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

How do I get this weld code to work in a function?

Asked by 6 years ago

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:

01function WeldEnable (Prt0, Prt1, x, y, z)
02    Prt1.CFrame = Prt0.CFrame * CFrame.new(x, y, z)
03    weld = Instance.new("Weld")
04    weld.Part0 = Prt0
05    weld.C0 = Prt0.CFrame:Inverse()
06    weld.Part1 = Prt1
07    weld.C1 = Prt1.CFrame:Inverse()
08    weld.Parent = Prt1
09    weld.Parent.Anchored = false
10end
11 
12Target = workspace.CoolOlivie057
13Targetpart = "LeftLowerLeg"
14 
15script.Parent.Touched:Connect(function(hit)
View all 22 lines...

Here is the code before it was modified:

01script.Parent.Touched:Connect(function(hit)
02    humanoid = hit.Parent:findFirstChild("Humanoid")
03    if humanoid then
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.Part0 = leftLowerLeg
09            weld.C0 = leftLowerLeg.CFrame:Inverse()
10            weld.Part1 = script.Parent
11            weld.C1 = script.Parent.CFrame:Inverse()
12            weld.Parent = script.Parent
13            weld.Parent.Anchored = false
14        end
15    end
16end)

BTW, the unmodified code works.

1 answer

Log in to vote
0
Answered by 6 years ago
Edited 6 years ago
1--you did not define Prt0 and Prt1 in the script
2-- for example l
3local Prt0 = script.Parent
4local Prt1 = Script.Parent.Parent
5 
6--so you can't say
7 weld.Part0 = Prt0
0
K thanks, I thought it was like in other coding languages where I would declare them in the brackets when I declare the function CoolOlivie057 45 — 6y
Ad

Answer this question