Alright, I’m currently making a warning service and I’m having a bit of trouble indexing the player’s current warns. The system is being coded so moderators will be able to view players warns even if they’re not online/in-game. The dictionary works like this
WarningDatabase = {
[PlayerId] = {
["Player Disrespect"] = {"Moderator'sNameWhoWarned","DateOfWarn"}
}
}
The issue I’m currently having is the fact that when I index the players warns, I cannot get the Key name/reason. Any suggestions or methods to do this?