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

Why my script doesn't work?

Asked by 10 years ago

Please make your question title relevant to your question content. It should be a one-sentence summary in question form.

Here is my script:

function hasPass(player,id) --Creating a simple function to see if the player has the GamePass with that id
 if game:GetService("GamePassService"):PlayerHasPass(player,id) then
  return true
 else 
  return false
 end
end



game.Players.PlayerAdded:connect(function(player)

 if hasPass(player,163409880) then --We're calling the function
  print(player.Name .. " has the GamePass!")


 elseif game:GetService("BadgeService"):UserHasBadge(p.userId, 93416536) then
        print("The user has this badge")

else
  print(player.Name .. " doesn't have the GamePass")
 end
end)

this script suppose to give player a badge if he got the gampass

0
You don't have a connection line to run the hasPass function. Try adding a connection line. SlickPwner 534 — 10y

1 answer

Log in to vote
0
Answered by 10 years ago

Your code never actually awards a badge! Also you only check if the user has the badge if they don't have the pass, Right code:

function hasPass(player,id) --Creating a simple function to see if the player has the GamePass with that id
 if game:GetService("GamePassService"):PlayerHasPass(player,id) then
  return true
 else 
  return false
 end
end



game.Players.PlayerAdded:connect(function(player)

 if hasPass(player,163409880) then --We're calling the function
  print(player.Name .. " has the GamePass!")


 if game:GetService("BadgeService"):UserHasBadge(p.userId, 93416536) then
        print("The user has this badge")
else
game:GetService("BadgeService")AwardBadge(p.userId, 93416536)
end
else
  print(player.Name .. " doesn't have the GamePass")
 end
end)
0
thanks may you fixed it so ill be able to copy it? KillSide 0 — 10y
Ad

Answer this question