When a player joins they are suppose to have a model called "Boat" to them. It clones to workspace but not to character :(
01 | game.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.Part 0 = tors --A weld needs 2 parts to funciton, this is one of them |
10 | weld.Part 1 = Boat.Part --This is the other one |
11 | weld.C 0 = CFrame.new( 0 , 0 , 0 ) |
12 | Boat.Parent = char --Parent it to the character |
13 | end ) |
14 | end ) |
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.
01 | function 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 |
08 | end |
09 |
10 | game.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 |