Advertisement
Sungmingamerpro13

x5 Wins Badge

Aug 14th, 2022
108
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1. local badgeService = game:GetService("BadgeService")
  2. local badgeID = 2124542294
  3. game:GetService("Players").PlayerAdded:Connect(function(player)
  4.  
  5. player.leaderstats.Wins.Changed:Connect(function()
  6. print("Trying")
  7. if player.leaderstats.Wins.Value >= 5 then
  8. print("Sucess X5 WINS")
  9. if badgeService:GetBadgeInfoAsync(badgeID).IsEnabled == true then
  10. badgeService:AwardBadge(player.UserId, badgeID)
  11. end
  12. end
  13. end)
  14. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement