The_Samuelson_Studio

Badge System!

Jun 3rd, 2022 (edited)
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.29 KB | None | 0 0
  1. --Put it on ServerScriptService!--
  2.  
  3. BadgeID = 0 --Add your BadgeID here--
  4.  
  5. TimeNo = 0.1
  6.  
  7. game.Players.PlayerAdded:connect(function(p)
  8.  
  9. wait(TimeNo)
  10.  
  11. b = game:GetService("BadgeService")
  12.  
  13. b:AwardBadge(p.userId,BadgeID)
  14.  
  15. end)
  16.  
  17. --The Tutorial https://www.youtube.com/watch?v=WkiiLA7i714 --
Advertisement
Add Comment
Please, Sign In to add comment