I am making a morse code typer on studio, but the O and I key by default it comes with the zoom function. I would like to know how i can make it be recognized by ImputBegan. Any answer will be appreciated.
UIS.InputBegan:Connect(function(Tecla, IsTyping)
if IsTyping then
return
end
local teclareal = Tecla.KeyCode.Name
local oxe = TECLAS:FindFirstChild(teclareal)
print(teclareal)
if oxe then
teclasatuais = teclasatuais..oxe.Name
actualplaying = actualplaying..oxe.Value
else
print("Nao")
end
end)