Advertisement
rickrollism

welcome badge script

Mar 9th, 2022
21,101
1
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 1 0
  1. local badgeID = Badge ID
  2. local badgeService = game:GetService("BadgeService")
  3.  
  4. game.Players.PlayerAdded:Connect(function(player)
  5. wait(1)
  6. if not badgeService:UserHasBadge(player.UserId, badgeID) then
  7. badgeService:AwardBadge(player.UserId, badgeID)
  8. end
  9. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement