Updated!!!!
I managed to fix the last issue with raid6n's suggestion. However I still have issues with this. My problem now is that when the user does not own badge the "note.Visible = true" doesn't make the note appear. Someone told me it's because the StarterGui... blah blah get moved somewhere else. That's all I remember, can someone help with that?
01 | local note = game.StarterGui.MainGui.Note |
02 | local player = game:GetService( "Players" ) |
03 | local badgeid = 2124518313 |
04 | local BadgeService = game:GetService( "BadgeService" ) |
05 |
06 | player.PlayerAdded:Connect( function (player) |
07 | if BadgeService:UserHasBadgeAsync(player.UserId, badgeid) then |
08 | print ( "User owns badge, do not display note." ) |
09 | else |
10 | print ( "User does not own badge, display note." ) |
11 | note.Visible = true |
12 | end |
13 | end ) |
Do
if BadgeService:UserHasBadgeAsync(player.UserId, badgeid) then
on line 7.https://developer.roblox.com/en-us/api-reference/function/BadgeService/UserHasBadgeAsync
What raid6n said is correct, but you would need a constant check if the user earned the badge. You would need to put that in a while loop.
01 | local player = game:GetService( "Players" ) |
02 | local badgeid = 2124518313 |
03 | local BadgeService = game:GetService( "BadgeService" ) |
04 |
05 | player.PlayerAdded:Connect( function (player) |
06 | while true do |
07 | wait( 10 ) --10 seems fair enough |
08 | if BadgeService:UserHasBadgeAsync(player.UserId, badgeid) then |
09 | print ( "User owns badge, do not display note." ) |
10 | else |
11 | print ( "User does not own badge, display note." ) |
12 | player.PlayerGui.MainGui.Note.Visible = true |
13 | end |
14 | end |
15 | end ) |
Or you can always do a check when you give the badge to the user to avoid while loops.
Since there is always another way than using while loops.
Do if BadgeService:UserHasBadgeAsync(player.UserId, badgeid) then
on line 7.
https://developer.roblox.com/en-us/api-reference/function/BadgeService/UserHasBadgeAsync