My Daily Reward System return a table. How to get the countdown?
Asked by
6 years ago Edited 6 years ago
I posted this not long time ago, and i received this script right here. I edited him a little bit for my use. But now, i have some questions about it. I'd like to create a UI with the amount of time before the reward. So i tried to send back the value of the PlayerData to get the time, but since she send me this in the output.
function: 16E5BAC4
02 | local PlayerService = game:GetService( 'Players' ) |
03 | local DataStoreService = game:GetService( 'DataStoreService' ) |
06 | local DailyRewards = DataStoreService:GetDataStore( 'dailyRewards' ) |
09 | local RewardAmmount = 50 |
14 | PlayerService.PlayerAdded:Connect( function (Player) |
15 | local ls = Instance.new( 'Folder' ) |
16 | ls.Name = 'leaderstats' |
19 | SessionData [ Player ] = { } |
20 | SessionData [ Player ] [ 'Cash' ] = 100 |
22 | local Cash = Instance.new( 'IntValue' , ls) |
24 | Cash.Value = SessionData [ Player ] [ 'Cash' ] |
26 | local PlayerData = nil |
29 | PlayerData = DailyRewards:GetAsync( 'player_' .. Player.UserId) |
33 | if ((os.time() - PlayerData) / ( 60 * 60 )) > = RewardTime then |
34 | Cash.Value = PlayerData + RewardAmmount |
35 | DailyRewards:SetAsync(Player.UserId, os.time()) |
37 | Cash.Value = PlayerData |
40 | DailyRewards:SetAsync(Player.UserId, os.time()) |