How do i get the enum value of an enum?
Example:
Enum.KeyCode.One has as enum value: 49
How do i get this value when i have the enum?
This way i can write the following code which is a lot shorter than the alternative
01 | local function manageInventory(input, gameProcessed) |
02 | local key = input.KeyCode - 48 |
03 | if 0 < key and key < 7 then |
04 | if inventory [ "ViewportFrame" ..key ] .BorderColor 3 = = unactiveColor then |
06 | inventory [ "ViewportFrame" ..key ] .BorderColor 3 = activeColor |
08 | inventory [ "ViewportFrame" ..key ] .BorderColor 3 = unactiveColor |