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;
01 | local Gun = script.Parent |
03 | local Handle = Gun:WaitForChild( "Handle" ) |
04 | local INSERT = table.insert |
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) |
16 | INSERT(Parts, { Obj = v, Weld = nil } ) |
19 | Handle.Anchored = false |
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:
01 | local akm = workspace.AKM |
04 | for i,v in pairs (A:GetChildren()) do |
05 | if v:IsA( "BasePart" ) then |
07 | local weld = Instance.new( "Weld" ) |
09 | weld.C 0 = B.CFrame:inverse() |
11 | weld.C 1 = v.CFrame:inverse() |
19 | akm.Handle.Anchored = true |