Advertisement
Herobrinekid2

Daglig bonus

Jan 20th, 2022
1,084
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.90 KB | None | 0 0
  1. local Service = game:GetService("DataStoreService")
  2. local Dss = Service:GetDataStore("-Test data")
  3.  
  4.  
  5. local function Get_Data(Key)
  6.     return Dss:GetAsync(Key)
  7. end
  8.  
  9.  
  10. local function Set_Up(Plr)
  11.     local Stats = Instance.new("Folder")
  12.     Stats.Name = "leaderstats"
  13.     Stats.Parent = Plr
  14.    
  15.     local Poeng = Instance.new("IntValue")
  16.     Poeng.Name = "Poäng"
  17.     Poeng.Parent = Stats
  18.    
  19.    
  20.     local Data = Get_Data(Plr.UserId)
  21.    
  22.     if Data ~= nil then
  23.         warn("Got data!")
  24.         Poeng.Value = Data["Poäng"]
  25.        
  26.         if os.time() - Data["Last Reward"] >= 100 then
  27.            
  28.             Poeng.Value = Poeng.Value + 100
  29.            
  30.             Dss:SetAsync(Plr.UserId, {
  31.                 ["Poäng"] = Poeng.Value;
  32.                 ["Last Reward"] = os.time()
  33.             })
  34.            
  35.         end
  36.        
  37.        
  38.     else
  39.         warn("New player!")
  40.         Dss:SetAsync(Plr.UserId, {
  41.             ["Poäng"] = 0;
  42.             ["Last Reward"] = os.time()
  43.         })
  44.     end
  45. end
  46.  
  47.  
  48. game.Players.PlayerAdded:Connect(function(Plr)
  49.     Set_Up(Plr)
  50. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement