Advertisement
HowToRoblox

AchievementsList

Dec 15th, 2022
1,212
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.58 KB | None | 0 0
  1. local achievements = {}
  2.  
  3.  
  4. achievements["Welcome"] = {
  5.     ImageId = 6915066359; -- ID of the achievement's image
  6.     Description = "Thanks for playing the game!"; -- The description for this achievement
  7.    
  8.     OrderRank = 1; -- The position this achievement will appear on the GUI
  9. }
  10.  
  11. achievements["10 minutes"] = {
  12.     ImageId = 228648990;
  13.     Description = "You've played for 10 minutes. Keep going!";
  14.     OrderRank = 2;
  15. }
  16.  
  17. achievements["Energetic"] = {
  18.     ImageId = 541620958;
  19.     Description = "You're quite energetic to have walked 500 studs already!";
  20.     OrderRank = 3;
  21. }
  22.  
  23.  
  24. return achievements;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement