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

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