So I was searching up some YouTube tutorial videos, and I wanted to make my boat move. Here is my code.
01 | local Engine = game.Workspace.car.Model.Engine.BodyThrust --The Force making the boat move |
02 | local SForce = game.Workspace.car.Steer.BodyAngularVelocity -- The force making the boat turn |
03 | local DSeat = script.Parent -- The driver seat |
04 | local Base = game.Workspace.car.Model.Base -- The base part of the boat |
05 |
06 | speed = 5000 -- The force of 'Engine' |
07 | SteerSpeed = 25 -- The force of SForce |
08 | BaseDensity = . 1 -- Lower this is your boat can't float, make it higher to make it go more in the water |
09 |
10 | DSeat.Changed:Connect( function (p) |
11 | if p = = "ThrottleFloat" then |
12 | Engine.Force = Vector 3. new( 0 , 0 ,speed * DSeat.ThrottleFloat) |
13 | end |
14 | if p = = "SteerFloat" then |
15 | SForce.AngularVelocity = Vector 3. new( 0 ,-SteerSpeed*DSeat.SteerFloat, 0 ) |
16 | end |
17 | end ) |
18 |
19 | Base.CustomPhysicalProperties = PhysicalProperties.new(BaseDensity, 0 , 0 ) |
So it works when I test it without welding the engine, but when i weld the engine, the boat doesn't move. One more question... I have a drivers seat, and do i need a script to make it move? Please answer my questions. Thanks!
Hey! I believe that you are trying to move an entire boat, but it looks like your welded part is anchored! That's why it wont move, you should make it as a model, and go to the model > properties > PrimaryPart, set it to the base part of the boat.
Now you should move it with :SetPrimaryPartCFrame
, rotating it need to use math.Angles
, just a note, every orientation you put should do math.rad
. Heres a sample:
1 | for i = 1 , 100 , 1 do |
2 | game.Workspace.Model:SetPrimaryPartCFrame( 0 , i, 0 ) * math.Angles(math.rad( 10 ), 0 , math.rad( 50 )) |
3 | end |
Yeah I think you need to script It to move