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

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

01--< Services
02local PlayerService = game:GetService('Players')
03local DataStoreService = game:GetService('DataStoreService')
04 
05--< Variables
06local DailyRewards = DataStoreService:GetDataStore('dailyRewards')
07 
08local RewardTime = 24 -- One day
09local RewardAmmount = 50 -- They get 50 cash each day
10 
11local SessionData = {}
12 
13--< Event
14PlayerService.PlayerAdded:Connect(function(Player)
15    local ls = Instance.new('Folder')
View all 42 lines...
0
os.time() DevingDev 346 — 6y
0
dude its easy just put the vector7 in the script and let the time center run for a while ! BlackCheap 14 — 6y
0
Vector7? This is not exist (Vector2, Vector3) NiniBlackJackQc 1562 — 6y

1 answer

Log in to vote
0
Answered by 6 years ago

idk about your code but here's what you should do

01local DataStoreService = game:GetService('DataStoreService')
02local DailyRewards = DataStoreService:GetDataStore('dailyRewards')
03 
04game.Players.PlayerAdded:Connect(function(plr)
05local currentDay =  math.floor(os.time()/86400)
06local key = plr.UserId
07if  DailyRewards:GetAsync(key) then --checks if there is any saved values
08local oldDay = DailyRewards:GetAsync(key)
09if oldDay < currentDay then
10-- give your reward
11end
12end
13DailyRewards:SetAsync(key, currentDay)
14end)
Ad

Answer this question