Быстрый способ создать управляемую лодку в Roblox Studio.
Скрипт из видео:
local seat = script.Parent
seat.Changed:Connect(function()
seat.Parent.Body.BodyForce.Force = seat.CFrame.LookVector * 2000 * seat.Throttle -- вперед-назад
seat.Parent.Body.AngularVelocity.AngularVelocity = Vector3.new(0,-2 * seat.Steer,0) --повороты
end)