My table is returning true instead of the data that was inside of it. Why? [FIXED]
Asked by
6 years ago Edited 6 years ago
--Edit-- Found a small error in a different part of the script that was causing this and got it fixed.
I have a module script (MainModule) in my game and it manages all the players' data/stats. I have a function to return stat data to other script that need it, however, I'm always getting 'true' instead of all the data that was in the table. I even have it print out all the data in the table before it returns it so I can confirm that it doesn't just say 'true' inside the table.
02 | function MainModule:ReturnData(player) |
03 | print ( "Started return data" ) |
05 | print ( "Player exists" ) |
06 | local ActualPlayer = game:GetService( "Players" ):FindFirstChild( tostring (player)) |
07 | if sessionData [ ActualPlayer ] then |
08 | print ( "Session data exists" ) |
09 | return dataStoreRetry( function () |
11 | for i,v in pairs (sessionData [ ActualPlayer ] ) do |
14 | return sessionData [ ActualPlayer ] |
So if I were to request it from another script like this:
1 | local MainModule = require(script.Parent.MainModule) |
3 | local PlayerData = MainModule:ReturnData( "Crazycat4360" ) |
5 | for i,v in pairs (PlayerData) do |
It returns true instead of the data in the table! Is there something I'm not understanding? Thanks.