Answered by
4 years ago Edited 4 years ago
What you would need to do is apply a force to the part that is equal but opposite to the force of gravity. To do this you can use a BodyMover like BodyForce, or one of the newer physics constraints like VectorForce, and, using Newton's Second Law we can figure out the force we need to apply.
Newton's second law states that F = ma.
We need to find F, so we must multiply mass (m) by acceleration (a).
Mass can be found with the Part:GetMass()
function.
Acceleration can be found as a property of workspace, workspace.Gravity
.
Therefore the force you must apply will have to be upwards, on the y axis, like so:
VectorForce.Force = Vector3.new(0, Part:GetMass()*workspace.Gravity, 0)
(Making sure that the VectorForce is set to apply the force in world space, not local space)
EDIT: An example, creating the attachment and VectorForce and applying the proper force
1 | local attachment = Instance.new( "Attachment" , bullet) |
2 | local vectorForce = Instance.new( "VectorForce" ) |
3 | vectorForce.Force = Vector 3. new( 0 , bullet:GetMass() * workspace.Gravity, 0 ) |
4 | vectorForce.ApplyAtCenterOfMass = true |
5 | vectorForce.RelativeTo = Enum.ActuatorRelativeTo.World |
6 | vectorForce.Attachment 0 = attachment |
7 | vectorForce.Parent = bullet |