It was noted on the Roblox Change Log that this was added. It's a readonly variable that shows what a specific user's quality level is. It's part of the UserGameSettings object, but I can't figure out how to access it. Does anyone know?
You can access UserSettings
and find the UserGameSetting service. That is where the reference to SavedQualityLevel can be found.
As Below:
local gameSettings = UserSettings():FindService('UserGameSettings') print(gameSettings.SavedQualityLevel)
Reference UserGameSettings from the UserSettings service UserSettings():FindService('UserGameSettings')
then you can access the SavedQualityLevel propertyUserSettings():FindService('UserGameSettings').SavedQualityLevel
.
print(UserSettings():FindService('UserGameSettings').SavedQualityLevel)