Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

I need help removing the falling animation on my r15 flying script?

Asked by 6 years ago
01repeat wait() until game.Players.LocalPlayer.Character
02 
03local plr = game.Players.LocalPlayer
04local char = plr.Character
05local hum = char:WaitForChild("Humanoid")
06local Torso = char:WaitForChild("LowerTorso")
07local Mouse = plr:GetMouse()
08local toggle = false
09 
10Mouse.KeyDown:Connect(function(key)
11    if key == "f" then
12        if toggle == false then
13            toggle = true
14            local BV = Instance.new("BodyVelocity",Torso)
15            BV.MaxForce = Vector3.new(math.huge,math.huge,math.huge)
View all 30 lines...
0
Please don't use KeyDown, it was deprecated. Please be a bit more descriptive about your intentions and whats not working, so we can be better-equipped to help you. Ziffixture 6913 — 6y
0
(Ignore my Claim for 200r+, accidental) Ziffixture 6913 — 6y
0
@Feahren, i got you, lol, anyway, the function :remove() is also deprecated, in favor of :Destroy() SerpentineKing 3885 — 6y
0
If you're going to detect key input, use UserInputService, not KeyDown. DeceptiveCaster 3761 — 6y

1 answer

Log in to vote
0
Answered by 6 years ago
01repeat wait() until game.Players.LocalPlayer.Character
02 
03local plr = game.Players.LocalPlayer
04local char = plr.Character
05local hum = char:WaitForChild("Humanoid")
06local Torso = char:WaitForChild("LowerTorso")
07local Mouse = plr:GetMouse()
08local toggle = false
09 
10Mouse.KeyDown:Connect(function(key)
11    if key == "f" then
12        if toggle == false then
13            toggle = true
14            local BV = Instance.new("BodyVelocity",Torso)
15            BV.MaxForce = Vector3.new(math.huge,math.huge,math.huge)
View all 34 lines...
Ad

Answer this question