Posted 20 August 2016 - 11:01 AM
So i've been trying to get like ctrl+u and other keys to do things but the way i've tried it didn't work :(/>
i hope that there is maybe a simpler way to do this and a working one :)/>
thanks
– ReBraLa
while true do
ev = {os.pullEvent()}
if ev[1] == "key" then
ev2 = {os.pullEvent()}
if ev2[1] == "key" then
if ev[2] == keys.leftCrtl and ev2[2] == keys.u then
return true
end
end
end
end
i hope that there is maybe a simpler way to do this and a working one :)/>
thanks
– ReBraLa