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

Help w/ weld?

Asked by
FiredDusk 1466 Moderation Voter
9 years ago

When a player joins they are suppose to have a model called "Boat" to them. It clones to workspace but not to character :(

01game.Players.PlayerAdded:connect(function(plr)
02        plr.CharacterAdded:connect(function(char)
03                local tors = char:WaitForChild('Torso') --tors is the character's Torso
04                local Boat = workspace.Boat:Clone() --Define backpack as a part
05                for _,Part in pairs(Boat:GetChildren()) do
06                    Part.Anchored=false
07                end
08                local weld = Instance.new('Weld',tors) --Create a new weld object inside tors
09                weld.Part0 = tors --A weld needs 2 parts to funciton, this is one of them
10                weld.Part1 = Boat.Part --This is the other one
11                weld.C0 = CFrame.new(0,0,0)
12                Boat.Parent = char --Parent it to the character
13            end)
14    end)

1 answer

Log in to vote
4
Answered by 9 years ago

Your main problem may be in line 05-07. If there are other things other than parts in the model, then the script will error. This is only a theory, may not be true. I'm not sure if this will be much help... Here you go anyway. Also, if you are testing in FPS mode, the boat will appear transparent due to the fact that you put it inside the character. Trying zooming out and looking for the boat.

01function unanchor(a)
02    for _,Part in pairs(Boat:GetChildren()) do
03        if Part:IsA("BasePart") then --If the object is a Part, Wedge, CornerWedge, or Union then...
04            Part.Anchored = false
05        end
06        unanchor(Part) --Check inside each model and part for any parts.
07    end
08end
09 
10game.Players.PlayerAdded:connect(function(plr)
11        plr.CharacterAdded:connect(function(char)
12        local tors = char:WaitForChild('Torso') --tors is the character's Torso
13        local Boat = workspace.Boat:Clone() --Define backpack as a part
14        unanchor(Boat)
15        local weld = Instance.new('Weld',tors) --Create a new weld object inside tors
View all 21 lines...
Ad

Answer this question