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:
01 | script.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 |
11 | local function wpress() |
12 | return userinputservice:IsKeyDown(wkey) |
14 | local function wfunction(input, gameProcessedEvent) |
16 | if plane.Values.Throttle.Value < 100 then |
17 | plane.Values.Throttle.Value = plane.Values.Throttle.Value + 10 |
18 | plane.VehicleSeat.Throttle = plane.VehicleSeat.Throttle + 10 |
19 | print ( "changed plane's throttle" ) |
22 | print ( "throttle value was already 100. dismissed." ) |
26 | userinputservice.InputBegan:connect(wfunction) |
SControls script:
01 | script.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 |
11 | local function spress() |
12 | return userinputservice:IsKeyDown(skey) |
14 | local function sfunction(input, gameProcessedEvent) |
16 | if plane.Values.Throttle.Value > 0 and plane.Values.Throttle.Value < 101 then |
17 | plane.Values.Throttle.Value = plane.Values.Throttle.Value - 10 |
18 | plane.VehicleSeat.Throttle = plane.VehicleSeat.Throttle - 10 |
21 | print ( "throttle value was already 0. dismissed." ) |
24 | userinputservice.InputBegan:connect(sfunction) |
Thanks! :)