How can i award players a badge whenever i am at their servers?
I want to make an script which whenever players enter the server i am or when i join their servers they will be award with a badge, the problem is that, it doens't works, there are no scripting errors as i checked, this is probabbly a FE problem i am having, and i also tried using both badges ID (The one from the library and the one from studio's Game Explorer). Here's the script i used:
02 | game.Players.PlayerAdded:connect( function (p) |
03 | if p.userId = = game.CreatorId then |
04 | for _,v in pairs (game.Players:GetPlayers()) do |
05 | game:GetService( "BadgeService" ):AwardBadge(v.userId,BadgeID) |
07 | elseif p.userId ~ = game.CreatorId then |
08 | for _,c in pairs (game.Players:GetPlayers()) do |
09 | if c.userId = = game.CreatorId then |
10 | game:GetService( "BadgeService" ):AwardBadge(p.userId,BadgeID) |