Advertisement
KodingKid

24h Experience Reward-by-Level System in Roblox

May 4th, 2021
229
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.87 KB | None | 0 0
  1. local Experience = game.Players.LocalPlayer.leaderstats.Experience.Value
  2. local Level = game.Players.LocalPlayer.leaderstats.Level.Value
  3. wait(86400)
  4. if Level == 0 then
  5.     Experience = Experience + 50
  6. end
  7. if Level == 1 then
  8.     Experience = Experience + 150
  9. end
  10. if Level == 2 then
  11.     Experience = Experience + 200
  12. end
  13. if Level == 3 then
  14.     Experience = Experience + 400
  15. end
  16. if Level == 4 then
  17.     Experience = Experience + 500
  18. end
  19. if Level == 5 then
  20.     Experience = Experience + 700
  21. end
  22. if Level == 6 then
  23.     Experience = Experience + 850
  24. end
  25. if Level == 7 then
  26.     Experience = Experience + 1000
  27. end
  28. if Level == 8 then
  29.     Experience = Experience + 1250
  30. end
  31. if Level == 9 then
  32.     Experience = Experience + 1500
  33. end
  34. if Level == 10 then
  35.     Experience = Experience + 2000
  36. end
  37. --see also: https://pastebin.com/sKRHCwh5 and https://pastebin.com/uWn2vS4y and https://pastebin.com/UQkeWNNG
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement