Advertisement
Cakey3101

Daily Rewards Module Script

Apr 26th, 2025
171
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.66 KB | Source Code | 0 0
  1. local DailyRewards = {
  2.     ["1"] = {
  3.         Type = "Gems", -- Type To Reward
  4.         Amount = 25, -- Amount To Reward
  5.     },
  6.     ["2"] = {
  7.         Type = "Coins", -- Type To Reward
  8.         Amount = 50, -- Amount To Reward
  9.     },
  10.     ["3"] = {
  11.         Type = "Coins", -- Type To Reward
  12.         Amount = 100, -- Amount To Reward
  13.     },
  14.     ["4"] = {
  15.         Type = "Gems", -- Type To Reward
  16.         Amount = 50, -- Amount To Reward
  17.     },
  18.     ["5"] = {
  19.         Type = "Coins", -- Type To Reward
  20.         Amount = 250, -- Amount To Reward
  21.     },
  22.     ["6"] = {
  23.         Type = "Gems", -- Type To Reward
  24.         Amount = 125, -- Amount To Reward
  25.     },
  26.     ["7"] = {
  27.         Type = "Coins", -- Type To Reward
  28.         Amount = 500, -- Amount To Reward
  29.     },
  30. }
  31.  
  32. return DailyRewards
Tags: robloxstudio
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement