How do i make players weightless and float in the air?

Title is self explanatory but, i want to make a player be weightless and just float around the air (also make it be reversible).

I have tried just turning “Massless” to true in every part of their body but it didn’t exactly work so i’m open for any suggestions, thanks!

1 Like

That’s not how massless works. You might have to use BodyPosition or something like that, but I’m pretty sure that BodyPosition is deprecated.

There’s a certain gravity amount to make the player float (I would guess 100 or 0 gravity, would make player jump high though.)
You could try setting the humanoidrootpart velocity to 0 whenever it changes but might be bugged and laggy.

Try this code excerpt:

local char = player.Character
local root = char:FindFirstChild("HumanoidRootPart")
local force = Instance.new("VectorForce")
force.Name = "FloatForce"
force.Force = Vector3.new(0, game.Workspace.Gravity * root.AssemblyMass, 0)
force.RelativeTo = Enum.ActuatorRelativeTo.World
force.Attachment0 = root.RootRigAttachment
force.Parent = root

That will make players float.

2 Likes