It wont let me sit in cloned seats

I am making a boat spawn but it wont let me sit in spawned boats

Server Script:

local event = game:GetService("ReplicatedStorage"):WaitForChild("Remote_Events"):WaitForChild("spawnBoatEvent")

event.OnServerEvent:Connect(function()
	local folder = game.Workspace:WaitForChild("Boat_Spawn_Points_One")

	if folder and #folder:GetChildren() > 0 then
		local children = folder:GetChildren()

		local randomIndex = math.random(1, #children)


		local randomChild = children[randomIndex]

		print("Picked random child: " .. randomChild.Name)
		local boatclone = game:GetService("ReplicatedStorage"):WaitForChild("Boats"):WaitForChild("Simple_Boat")
		boatclone.Name = "Boat"
		boatclone.Parent = game.Workspace
		boatclone:PivotTo(randomChild.CFrame)
		wait(1)
	end
end)

Local Script:

local event = game:GetService("ReplicatedStorage"):WaitForChild("Remote_Events"):WaitForChild("spawnBoatEvent")

script.Parent.MouseButton1Click:Connect(function()
	event:FireServer()
end)

attach a file for the boat model. the script likely isn’t the problem.

let me get the boat model and scripts

BoatSpawnTest.rbxl (112.3 KB)
Here

I fixed it I still don’t know what caused it but I just remade the boat and made the boat seat more assessable

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.