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

My Tool Welding Script which should automatically weld is broken?

Asked by 8 years ago
Edited 7 years ago

The Problem is: The script doesn't weld the tool, but I have seen it work before, it 's just not working for me, it doesn't weld and it doesn't let the player use it, so the player doesn't hold it, it just falls through the ground where I make it :( I have a very, very, basic tool, consisting of 6 parts, the reason I don't want to make it too complex is because, I want to learn how to script my own gun, so Im using designs that aren't too complex. (I have made and developed more complex tools with over 200 parts) but I used a free script to help me (yeah, I'm quite a new scripter), The first part im aware of to making a usable tool (its meant to be a gun, I'm working on a game) is to start with welding and slowly get into more difficult scripts. Here is the script;

01local Gun = script.Parent
02 
03local Handle = Gun:WaitForChild("Handle")
04local INSERT = table.insert
05local Parts = {}
06spawn(function()
07    for _,v in pairs(Gun:GetChildren()) do
08        if v:IsA("BasePart") and v ~= Handle then
09            if v:FindFirstChild("MainWeld") then v.MainWeld:Destroy() end
10            if (not v:FindFirstChild("WeldCF")) then
11                local WeldCF = Instance.new("CFrameValue")
12                WeldCF.Name = "WeldCF"
13                WeldCF.Value = Handle.CFrame:toObjectSpace(v.CFrame)
14                WeldCF.Parent = v
15            end
View all 21 lines...

The parts inside the tool are as follows: A normal script - "WeldTest" A part, used as handle or hold part - "Handle" A normal Part - "P1" A normal Part - "P2" A normal Part - "P3" A normal Part - "P4" A normal Part - "P5" thank to help
EDIT:

01local akm = workspace.AKM
02 
03function Weld(A, B)
04    for i,v in pairs(A:GetChildren()) do
05        if v:IsA("BasePart") then
06            if v ~= B then
07                local weld = Instance.new("Weld")
08                weld.Part0 = B
09                weld.C0 = B.CFrame:inverse()
10                weld.Part1 =  v
11                weld.C1 = v.CFrame:inverse()
12                weld.Name = v.Name
13                weld.Parent = B
14            end
15        end
View all 21 lines...

1 answer

Log in to vote
0
Answered by 8 years ago

Try this script. You don't need to need to change anything, just place it inside of your tool.

01WeldParts = script.Parent:GetChildren()
02for i=1, #WeldParts do
03if WeldParts[i]:IsA("Part") or WeldParts[i]:IsA("UnionOperation") or WeldParts[i]:IsA("MeshPart") then
04if WeldParts.Name ~= "Handle" then
05local weld = Instance.new("Weld", script.Parent.Handle)
06weld.Part0 = script.Parent.Handle
07weld.C0 = script.Parent.Handle.CFrame:inverse()
08weld.Part1 =  WeldParts[i]
09weld.C1 =WeldParts[i].CFrame:inverse()
10end
11end
12end
0
I also get this http://imgur.com/a/THjpJ abnotaddable 920 — 8y
0
I accidently disabled the script, heres the actual error; http://imgur.com/a/uLVSw abnotaddable 920 — 8y
0
I accidentally anchored a part here is what it looks like now ... http://imgur.com/a/0mFZc abnotaddable 920 — 8y
View all comments (2 more)
0
never mind, I got it to work, was just the rotation of the handle abnotaddable 920 — 8y
0
If it worked, please accept my answer. Precisionly 103 — 8y
Ad

Answer this question