of     1   

ituraxi
#228405497Sunday, December 03, 2017 11:32 PM GMT

i have asked this question long way ago but nobody awnsered me with useful comments i am doing a game by chapters and i need a way to save the number which will be chapter you are on, and by that you could enter the chapter from #### ###### and less i mean like i have knowings about all of that but saving odio los tacos -said no juan never ever
Vulkarin
#228405857Sunday, December 03, 2017 11:40 PM GMT

robuxiangamer13
#228405965Sunday, December 03, 2017 11:42 PM GMT

####### BRO it’s me
QuetzelPretzel
#228406661Sunday, December 03, 2017 11:57 PM GMT

You can use DataStoreService. (Place this script in the user's backpack) First, you would have to set a variable to the DataSoreService path you want to use, so you would do this: Player = script:FindFirstAncestorOfClass("Player") -- This finds the player's name ChapterStore = game:GetService("DataStoreService"):GetDataStore("ChapterNumber") ChapterNumber = "ChapterNumber_" .. Player.UserId This sets it so you can use "ChapterStore:GetAsync" to access it's data store of "CharterNumber_(The user's ID)". You can then set the value to whatever the chapter number is by doing this (x = the chapter they are on): ChapterStore:SetAsync(ChaperNumber, x) For more information on DataStoreService, go to: http://wiki.roblox.com/index.php?title=API:Class/DataStoreService http://wiki.roblox.com/index.php?title=Data_store I hope this helped. Good luck!

    of     1