Hello, I’ve got this dropship here.
Inside of it there is a part which a BodyGyro and a BodyPosition are parented.
The code in a serverscript welds all the parts in the model to this part that has the BodyGyro and BodyPosition. Then the whole model is unanchored(It’s anchored previously).
What happens now is this:
As soon as the ship comes into contact with different objects it will move wierdly back n forth, as if its being pushed, or a part or something is colliding with it:
Video
After maybe 15-20 Seconds, it goes back to normal, where you can stand on it and it wont be moving wierdly.
I’ve used this script on other models and it works perfectly. This model includes Unions and BaseParts with meshes inside them.
Any idea on how to fix?
EDIT:
This is what happens if I run the game and the script performs its function.
How heavy (Density) are the Parts and Unions in your ship?
You say you’ve used this in other Models, but have they been smaller ones?
The reason I ask is the Forces in your BodyGyro and BodyPosition may not be strong enough to keep the ship stable if the Model is too heavy.
Have you tried increasing the Forces in the BodyGyro and BodyPosition, or making all the Parts in your ship less dense?
Hello! Thanks for responding. Turns out the massless did not help, but while doing so I noticed the property CollisionFidelity which was set to Box. I changed it to default and now it works perfectly. Thanks for your suggestions!