#Shift does not work.

1 messages · Page 1 of 1 (latest)

distant copper
#

The following script is for a car that I want to drift; for some reason it works with any key but shift, a yes shift the ONE key I need.

userInputService.InputBegan:Connect(function(input, gameProcessedEvent)

if gameProcessedEvent then 
    return 
end

if input.KeyCode == Enum.KeyCode.W then
    print("WOOORK")
    driftEvent:FireServer()
end

end)

cedar cipher