Advertisement
KodingKid

How to make levels and leagues in Roblox Lua

Apr 9th, 2021
140
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.27 KB | None | 0 0
  1. local Level = 0
  2. local XP_Requirement = 100
  3. local XP_Current
  4. if XP_Current >= XP_Requirement then
  5.     print("You are now level 1!")
  6. local Level_Requirement = 5
  7. local Level_Current
  8. if Level_Current >= Level_Requirement then
  9.     print("You are now in the bronze league!")
  10. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement