Hey everybody, I recently downloaded [Open-source] Hander, a better hand-to utility for my game, and I’m setting it up, and running into an issue. I configure the configuration script with my group ID and ranks, etc
And nothing will work.
My best guess is that i’m inserting the rank values incorrectly, and its not picking up anything. Heres the configuration script.
local configuration = {}
configuration.groupId = 32052224 -- use number
configuration.ranks = {} -- >rank, <rank, rank
configuration.pattern = "([<>]?)(%d+)" -- to check pattern of ranks
configuration.maxRetries = 3 -- keep it at a reasonable amount
return configuration
My group ID is set, but im not sure what to put in the rank ID. I want ranks 4>= to be able to use the system but i’m not sure how to tell it that.
If someone could help me that would be great!
Thanks.
It’s possible the module isn’t loading in time, try changing local configuration = require(script.Configuration) to local configuration = require(script:WaitForChild("Configuration")
Just tried that, and it didn’t work. But when i reversed it, i joined test mode, and saw a flash of the GUI and then it went away. Edit: I capitalized the C in configuration on the script name, and it did that.