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

Table inside of a ModuleScript is returning nil when it shouldn't be?

Asked by
Troidit 253 Moderation Voter
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]

01local PlayerStatManager = {}
02 
03local DataStoreService = game:GetService('DataStoreService')
04local playerData = DataStoreService:GetDataStore('PhobiaSave')
05 
06local AUTOSAVE_INTERVAL = 90
07 
08local sessionData = {}
09 
10function PlayerStatManager:ChangeStat(player, statName, changeValue)
11    sessionData[player][statName] = sessionData[player][statName] + changeValue
12end
13 
14function PlayerStatManager:RetrieveData(player) --Function I'm operating from the regular script
15    return sessionData[player]
View all 56 lines...

Server Script: [EDITED]

1Storage = require(script.StatStorage)
2game:GetService("Players").PlayerAdded:Connect(player)
3    print(Storage:RetrieveData(Player)) --returns nil
4end

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.

1 answer

Log in to vote
1
Answered by
Azarth 3141 Moderation Voter Community Moderator
7 years ago
Edited 7 years ago

You put Player, not player. Also, you should be using the two together in unison. You have two PlayerAdded functions going on. You should call it from the script to the module, else they're probably going to fire in different orders and that's not going to work out well online. Ie.. index the player when they join via script calling the setupPlayerData function in the module, return data.

01local module = require(script:WaitForChild('ModuleScript'))
02 
03game.Players.PlayerAdded:connect(function(player)
04    local data = module:setupPlayerData(player)
05    print(data.Points)
06end)
07 
08game.Players.PlayerRemoving:connect(function(player)
09    module:player_left(player)
10end)
01local PlayerStatManager = {}
02 
03local DataStoreService = game:GetService('DataStoreService')
04local playerData = DataStoreService:GetDataStore('PhobiaSave')
05 
06local AUTOSAVE_INTERVAL = 90
07 
08local sessionData = {}
09 
10function PlayerStatManager:ChangeStat(player, statName, changeValue)
11    sessionData[player][statName] = sessionData[player][statName] + changeValue
12end
13 
14function PlayerStatManager:getPlayerData(player)
15    return playerData:GetAsync(player.UserId)
View all 48 lines...
Ad

Answer this question