Removing gravity

how to remove gravity from every player character (freeze him)

2 Likes

Removing gravity and freezing a player are two different things.

You can use workspace.Gravity = 0 to disable gravity.

To freeze a character you will anchor their body parts.

4 Likes

and when i need to only remove gravity, but give acces to move and only to player not whole workspace

Look at this article. It shows you how to counteract gravity with a bodyforce.

Try setting the force to a vector with y as gravity multiplied by the mass of the character.

3 Likes

You can adjust the Gravity on the client instead of the entire server using a LocalScript

2 Likes