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

How do I implement IsKeyDown to get a true false value?

Asked by 8 years ago

I haven't dabbled far from using events on functions I already know, so all I really need is an example of IsKeyDown. Any example.

Thanks.

1 answer

Log in to vote
1
Answered by 8 years ago

You can use the UserInputService with the method GetKeysPressed which returns a list of current InputObject.

This an example to show how it can be used, is also must be a local script:-

01local inpServ = game:GetService('UserInputService') -- gets the service
02 
03function isKeyDown(key)
04    for i,v in pairs(inpServ:GetKeysPressed()) do
05        if v.KeyCode  == key then return true end
06    end
07 
08    return false -- no keys found
09end
10 
11function isMultiKeyDown(keys)
12    local num = 0 -- keydown counter
13 
14    for i,v in pairs(inpServ:GetKeysPressed()) do
15        for i2, v2 in pairs(keys) do -- probably should check for multiples of the same key
View all 27 lines...

Hope this helps

Ad

Answer this question