Advertisement
luchitasin9

Welcome Badge Script

Feb 12th, 2025
102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.32 KB | Source Code | 0 0
  1. local BadgeService = game:GetService("BadgeService")
  2. local badgeID = 000000000 -- Replace it with your ID
  3.  
  4. game.Players.PlayerAdded:Connect(function(player)
  5.     local owned = BadgeService:UserHasBadgeAsync(player.UserId, badgeID)
  6.    
  7.     if not owned then
  8.         wait(2)
  9.         BadgeService:AwardBadge(player.UserId, badgeID)
  10.     end
  11. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement