How would you store key binds in a module script?

Store key binds for certain usage, for local scripts to look at and apply

1 Like

You could just do this:

return {
    ActionName = Enum.KeyCode.KeyHere;
    ActionName2 = Enum.KeyCode.KeyHere;
}

Getting the keybinds:

local Keybinds = require(path.to.module)
2 Likes

thanks, I will try this soon (:

1 Like

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.