Hey! Im making a open would game which has ships in it.
But i have a issue, which is. I dont know how to create a roll or rock for the ship in the sea, its using a vehicle seat, i have tried rotating ships with body objects but it just makes them buggy and broken (fall over, or grow more and more out of sync)
Do people animate them in any other way than just body movers? I would use tweening but the ship cant be anchored.
Thanks! I did some reading into it, and decided to use Align Orientation which would of worked really well, but i cant seem to get the body movers to move only one axis, now it stops the ship from turning due to it being locked in place by Align Orientation. Is there any way I can lock it to just the x axis?
BodyMovers usually have a property expressing how much force can be applied to a specific axis. For example BodyVelocity has a property called MaxForce, if you wanted to lock it to only work on the X axis you would set BodyVelocity.MaxForce = Vector3.new(10000, 0, 0), setting max force to the other axis means force cannot be applied to them by the instance rendering them locked.