Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

How can i award players a badge whenever i am at their servers?

Asked by 7 years ago

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:

01BadgeID = 476095178
02game.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)
06        end
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)
11                break
12            end
13        end
14    end
15end)

1 answer

Log in to vote
0
Answered by 7 years ago

This should work:

01badgeId= 476095178
02function onPlayerEntered(player)
03if string.lower(player.Name)==string.lower("Velege1") then
04for _,a in pairs(game.Players:GetChildren()) do
05if a.Name~= "Velege1" then
06game:GetService("BadgeService"):AwardBadge(a.userId,badgeId)
07end
08end
09end
10if game.Players:findFirstChild("Velege1")~=nil then
11game:GetService("BadgeService"):AwardBadge(player.userId,badgeId)
12end
13end
14game.Players.ChildAdded:connect(onPlayerEntered)
Ad

Answer this question