Hey, so my issue currently is that I’m trying to create a global levels leaderboard and my datastores save tables like so:
local data = {
["Level"] = 1,
["CurrentExperience"] = 0,
["MaxExperience"] = 500
}
I want to get the levels
part of that and turn it into an ordered data store, but have no idea how to pull that individual value off the dictionary. Can someone help? Thanks in advance!