When i was making a brick float with Body Velocity, it went higher and higher, how do i make it stay in
one spot but still moves like in the spinning thing of doom lobby?
Well actually bode velocity won't work you can try to manipulate the floating brick by getting it's gravity.
Try using BodyForce.
MassAddition = 0 MassAddition = brick:GetMass() + MassAddition Gravity = -196.2 * MassAddition Instance.new("BodyForce",brick).force = Vector3.new(0,-Gravity,0)
Make the brick first and define in before the script though this should negative the effect of gravity and let it float :P.
GetMass()
Just get's the mass of the brick. Try wiki if you don't understand.
There's more body velocity that specialize in that. Experiment with some so the brick stays it stays in the air, or if not, I have no idea.