How to make a flight script, lemme describe it.
It’s like you’re just floating to the air and you can walk/run while you’re doing it. Do you need to move the humanoidRootPart to do that? I am using a tool to make it.
1 Like
Just change your HipHeight (a Humanoid property) to something like 100 and it will work.
1 Like
Something like this?
local tool = script.Parent
tool.Activated:Connect(function()
local hum = tool.Parent:FindFirstChild("Humanoid")
if hum then
hum.HipHeight = 100
wait(3.5)
hum.HipHeight = `normal hipheight`
end
end)
I don’t know why you added a wait(3.5) and then set it back to it’s normal hipheight but yea I guess.