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

Why is my plane model detecting A and S/W?

Asked by 5 years ago
Edited 5 years ago

So recently, I've spent some time making an airplane. I've scripted it all myself, and made a script called "AControls'. I've deleted the AControls script, since it just timed out my game, but it still senses a click. When I click A, it triggers my WControls script, as well as my SControls script.

WControls script:

01script.Parent.Active.Changed:Connect(function(newValue)
02    if newValue == true then
03        local userinputservice = game:GetService("UserInputService")
04        local plane = game.Workspace:FindFirstChild(script.Parent.Plane.Value)
05        local keycode = Enum.KeyCode
06        local wkey = keycode.W
07        local rshiftkey = Enum.KeyCode.RightShift
08        local lshiftkey = Enum.KeyCode.LeftShift
09        local gkey = keycode.G
10        --making functions for w key--
11        local function wpress()
12            return userinputservice:IsKeyDown(wkey)
13        end
14        local function wfunction(input, gameProcessedEvent)
15            if wpress() then
View all 29 lines...

SControls script:

01script.Parent.Active.Changed:Connect(function(newValue)
02    if newValue == true then
03        local userinputservice = game:GetService("UserInputService")
04        local plane = game.Workspace:FindFirstChild(script.Parent.Plane.Value)
05        local keycode = Enum.KeyCode
06        local skey = keycode.S
07        local rshiftkey = Enum.KeyCode.RightShift
08        local lshiftkey = Enum.KeyCode.LeftShift
09        local gkey = keycode.G
10        --making functions for w key--
11        local function spress()
12            return userinputservice:IsKeyDown(skey)
13        end
14        local function sfunction(input, gameProcessedEvent)
15            if spress() then
View all 27 lines...

Thanks! :)

Answer this question