Hi, I want to create a floating block that can serve as a balloon, what script would work for this? Or is there any function to do this? Thank you very much.
1 Like
how to make a floating part in roblox studio - YouTube have you checked this
If it doesnt help, sorry to waste your time
Not working, BodyVelocity has been removed.
Not removed but just deprecated. So, I wouldn’t recommend using it since it could be removed in the future.
So, I would use VectorForce
and set the force to World space Vector3.new(0, part:GetMass()*workspace.Gravity, 0)
and now you have a part not affected by gravity. This might take some time since this new Constraint system is very complex and needs one attachment, and you must set the Mode to something similar. I don’t bother to remember this since this odd “BodyMover” an abomination anyway, and not nearly as simple as the original BodyForce
.
1 Like