Is It Possible To Make A Save Script That Saves All Of The Images From The GUI?
I made a brick that have image on it and when I touch the brick that has the image on it, the image in the GUI will appear when I touched the brick. But there is a problem, when I reset, the image from my GUI were all gone and also didn't save. I'm trying to figured it out how to make it work, but I can't. Could somebody help me?
If you don't know what I'm talking about, you can check out the link below to model that I made.
Link: http://www.roblox.com/D-item?id=313528352
1 | local function setupPlayerData(player) |
2 | sessionData [ player.PlayerGui.StickerGui.Stickers ] = { 1 = "imgsrc" , 2 = "imgsrc, 3=" imgsrc, 4 = "imgsrc" , 5 = "imgsrc" , 6 = "imgsrc" , 7 = "imgsrc" , 8 = "imgsrc" , 9 = "imgsrc" , 10 = "imgsrc" } |
02 | local PlayerStatManager = require(game.ServerStorage.PlayerStatManager) |
05 | game.Players.PlayerAdded:connect( function (player) |
07 | PlayerStatManager:ChangeStat(player, 'Money' , 5 ) |
08 | PlayerStatManager:ChangeStat(player, 'Experience' , 1 ) |
01 | local DataStoreService = game:GetService( 'DataStoreService' ) |
02 | local playerData = DataStoreService:GetDataStore( 'PlayerData' ) |
04 | local function setupPlayerData(player) |
05 | local data = playerData:GetAsync(player.UserId) |
07 | data = { 1 = "imgsrc" , 2 = "imgsrc, 3=" imgsrc, 4 = "imgsrc" , 5 = "imgsrc" , 6 = "imgsrc" , 7 = "imgsrc" , 8 = "imgsrc" , 9 = "imgsrc" , 10 = "imgsrc" } |
08 | playerData:SetAsync(player.UserId, sessionData [ player ] ) |
10 | sessionData [ player ] = data |
13 | game.Players.PlayerRemoving:connect(savePlayerData) |
Thank you for your time.