|
| 17 Jan 2016 02:01 PM |
Im trying to make it where u know when a specific person joins it gives thm a badge for playing with them, i have the script but it wont work
ID = 123212 --Change to the badges ID game.Players.PlayerAdded:connect(function(p) wait(0.1) if p.Name == "Retroslide" then local a = game.Players:GetChildren() for i=1,#a do game:GetService("BadgeService"):AwardBadge(a[i].userId,ID) end
|
|
|
| Report Abuse |
|
Crimsonal
|
  |
| Joined: 23 Apr 2011 |
| Total Posts: 1795 |
|
|
| 17 Jan 2016 02:02 PM |
ID = 123212 --Change to the badges ID game.Players.PlayerAdded:connect(function(p) wait(0.1) if p.Name == "Retroslide" then local a = game.Players:GetChildren() for i=1,#a do game:GetService("BadgeService"):AwardBadge(a[i].userId,ID) end end end)
|
|
|
| Report Abuse |
|