I need a script or a idea of how to make a brick have no gravity anyone can help?
This is not really a scripting question. However, you can do this by editing the force property of a BodyForce.
Of course, you CAN do this with scripting, if you want.
1 | local bf = Instance.new( "BodyForce" ,workspace.Part) |
2 | bf.force = Vector 3. new( 0 , 100 , 0 ) --Makes the brick fly up (if it's a small enough brick) |
Marked as Duplicate by Tesouro, fireboltofdeath, and BlueTaslem
This question has been asked before, and already has an answer. If those answers do not fully address your question, then please ask a new question here.
Why was this question closed?