How to make gliders like in bed wars?

How To Make Glider System Like In BedWars?
How Glider Works In Bed Wars:

  1. Make You Fall Slower, like x2 or x3 times slower
  2. When You Press W, You Can Move Faster In Sky
  3. You Can Destroy/Stop Glider Everytime with 1 keycode.
    Help Please, I really Need this system

Have you attempted to search up tutorials on YouTube, or attempt to look for models of this system that you’re looking for?

You can change Gravity from local script ;-;

local part = workspace:WaitForChild("Part")

part.Touched:Connect(function(hit)
	if (hit.Parent:FindFirstChildWhichIsA("Humanoid"))  and (hit.Parent:FindFirstChild("Humanoid") == game.Players.LocalPlayer.Character:FindFirstChild("Humanoid"))  then
		if workspace.Gravity ~= 100 then 
			workspace.Gravity = 100-- your gravity here
		else
            workspace.Gravity = 192
        end
	end
end)

thanks but second and third thing. and I thought if its in workspace, its will low gravity to everyone?

It’s just a script for a test. It is searching part in workspace and then if someone touch it it will put their gravity to 100

1 Like

You can make a tool and then check if it is activated by using this tool.Activated:Connect(yourfunctionhere)

if it is in a localscript then no

1 Like