Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

How do I store data for a GUI in an Application game?

Asked by 7 years ago

Hello, I was fiddling around with the configuration of the DataStore function and I wanted to store certain questions on a page that players answered. (This is an application centre.) I wanted to make the DataStore where when somebody finished the application, it stays on the Applications GUI until the player leaves. This is because there's no DataStore for this yet. Would I make a string value for each question, or something else?

Thanks!

      -iiExploitex
1
You should save the questions like {"Q1Answer", SelectedAnswerQ1, "Q2Answer", SelectedAnswerQ2} then you can easily itterate through it using a FOR loop. RubenKan 3615 — 7y
0
You can also use dictionaries for easy sorting:) Questions = {["Q1"] = Q1answer; ["Q2"] = Q2answer}; Goulstem 8144 — 7y

Answer this question