|
| 16 Dec 2015 09:58 PM |
Why will this clone everything but the animations in the fishing pole?
local j = game.ServerStorage:FindFirstChild("John boat") local s = game.ServerStorage:FindFirstChild("Speedboat") local p = game.ServerStorage:FindFirstChild("Pontoon") local fp = game.ServerStorage:FindFirstChild("Fishing Pole") script.Parent.MouseClick:connect(function(f) if f.Backpack:FindFirstChild("BoatChosen") then local b = f.Backpack:FindFirstChild("BoatChosen") if b.Value == 1 then local jc = j:Clone() jc.Parent = game.Workspace jc:MoveTo(game.Workspace.StartArea.Boatspawn.Position) b.Value = 0 jc.Name = f.Name.."'s boat" fp:clone().Parent = f.Backpack elseif b.Value == 2 then local sc = s:Clone() sc.Parent = game.Workspace sc:MoveTo(game.Workspace.StartArea.Boatspawn.Position) b.Value = 0 sc.Name = f.Name.."'s boat" fp:clone().Parent = f.Backpack elseif b.Value == 3 then local pc = p:Clone() pc.Parent = game.Workspace pc:MoveTo(game.Workspace.StartArea.Boatspawn.Position) b.Value = 0 pc.Name = f.Name.."'s boat" fp:clone().Parent = f.Backpack end end end) |
|
|
| Report Abuse |
|
|
| 16 Dec 2015 10:07 PM |
Bump
Kinda need to figure this out. Its a key item in the game. |
|
|
| Report Abuse |
|