Advertisement
KodingKid

1h Experience Salary-by-League System in Roblox

May 4th, 2021
235
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.37 KB | None | 0 0
  1. local Experience = game.Players.LocalPlayer.leaderstats.Experience.Value
  2. local League = game.Players.LocalPlayer.leaderstats.League.Value
  3. if League == "Bronze iii" then
  4.     wait(3600)
  5.     Experience = Experience + 500
  6. end
  7. if League == "Bronze ii" then
  8.     wait(2700)
  9.     Experience = Experience + 1000
  10. end
  11. --see also: https://pastebin.com/sKRHCwh5 + https://pastebin.com/uWn2vS4y
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement