Thank you everyone who told me I needed a data base. I'M WORKING ON IT!
I have made a simple ranking script for a game I am making. I am trying to rank myself one of the variables in the table but I don't know how to do this or if it is even possible. Any suggestions?
01 | ranks = { |
02 | "Founder" ; |
03 | "Co-Founder" ; |
04 | "Staff" ; |
05 | } ; |
06 |
07 | game.Players.PlayerAdded:Connect( function (p) |
08 | if p.Name = = "KingDomas" then |
09 | --Want it to set me to Founder |
10 | end |
11 | end ) |