Role Structure
NOTE
Your not supposed to be working directly with this data and you should use the API to interact with roles.
This is the role structure for any role in Lyn. Basically what the table will look like when using Lyn.Role.Get(name)
{
name = "admin",
display_name = "Admin",
immunity = 50,
color = Color(255, 0, 0),
-- can be nil
extends = "user",
-- can be nil
permissions = {
["freeze"] = true,
["goto"] = true,
["bring"] = false
}
}