vxscripts

Roblox Welcome Badge

Nov 30th, 2025
31
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.38 KB | Gaming | 0 0
  1. -- this is a server script in server script service --
  2.  
  3. local BadgeID = 9217562642 -- Replace this with your badge id
  4. local BadgeService = game:GetService("BadgeService")
  5.  
  6. game:GetService("Players").PlayerAdded:Connect(function(player)
  7.     task.wait(0.1)
  8.     if not BadgeService:UserHasBadgeAsync(player.UserId, BadgeID) then
  9.         BadgeService:AwardBadge(player.UserId, BadgeID)
  10.     end
  11. end)
Advertisement
Add Comment
Please, Sign In to add comment