DataStore Character Limit?

So let’s say that the maximum characters allowed in DataStores are 4 Million Characters
but I was wondering if so many characters are in the table then it would break my game’s DataStore System

Here is an Example of the tables:

QuizData = {
	Quiz = {
		QuizName = "Roblox Quiz";
		
		QuizProperties = {
			CreatorEnabled = false;
			SampleQuestionsEnabled = false;
		};
		
		QuizQuestions = {
			Question1 = {
				Question = "Who Invented Roblox?";
				CorrectAnswer = "Roblox";
				Answers = {
					Option1 = "Builderman";
					Option2 = "You";
					Option3 = "God";
					Option4 = "Nobody";
				}
			};
			
			Question2 = {
				Question = "Where was Roblox Originally Founded?";
				CorrectAnswer = "2006";
			};
			
			-- ...
		}
	}
}

and Formatted in Values

image

so if the table already has an excessive amount of Characters on it then how on earth if they made like 10 Copies of the Table or New Quizzes unless if I separate it in DataStores though

1 Like

By just looking at your code, it isn’t possible to determine if something’s going to break the datastore limit. Keep track of the number of characters as you advance. Btw, how much do you have right now?

The table of the code I gave is more than 500 characters which could be dangerous though if they created it with alot of stuff but I will make a system that you can only create in a certain amount of quizzes

1 Like