Table inside of a ModuleScript is returning nil when it shouldn't be?
Asked by
7 years ago Edited 7 years ago
I'm using a ModuleScript to create an index that stores the amount of points a player has, and saves it with DataStores when they leave (as well as during an autosave). With the help of the Roblox Wiki I was able to script what looks to me like it should work.
ModuleScript: [EDITED]
01 | local PlayerStatManager = { } |
03 | local DataStoreService = game:GetService( 'DataStoreService' ) |
04 | local playerData = DataStoreService:GetDataStore( 'PhobiaSave' ) |
06 | local AUTOSAVE_INTERVAL = 90 |
10 | function PlayerStatManager:ChangeStat(player, statName, changeValue) |
11 | sessionData [ player ] [ statName ] = sessionData [ player ] [ statName ] + changeValue |
14 | function PlayerStatManager:RetrieveData(player) |
15 | return sessionData [ player ] |
18 | local function getPlayerData(player) |
19 | return playerData:GetAsync(player.UserId) |
23 | local function savePlayerData(player) |
24 | playerData:SetAsync(player.UserId, sessionData [ player ] ) |
27 | local function setupPlayerData(player) |
28 | local data = getPlayerData(player) |
30 | sessionData [ player ] = { Intelligence = 0 } |
31 | savePlayerData(player) |
33 | sessionData [ player ] = data |
37 | local function autosave() |
38 | while wait(AUTOSAVE_INTERVAL) do |
39 | for player, data in pairs (sessionData) do |
40 | savePlayerData(player) |
45 | game.Players.PlayerAdded:Connect(setupPlayerData) |
47 | game.Players.PlayerRemoving:Connect( function (player) |
48 | savePlayerData(player) |
49 | sessionData [ player ] = nil |
56 | return PlayerStatManager |
Server Script: [EDITED]
1 | Storage = require(script.StatStorage) |
2 | game:GetService( "Players" ).PlayerAdded:Connect(player) |
3 | print (Storage:RetrieveData(Player)) |
When I run in test mode and insert a break where I commented above (BREAK HERE) inside the ModuleScript, it doesn't break showing that it's not running the function when required to on PlayerAdded? I'm not sure if that's related to the problem of my Server Script trying to get something that returns nil from the ModuleScript.