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

Display a note if user does not own badge, don't display it if they do?

Asked by 4 years ago
Edited 4 years ago

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?

01local note = game.StarterGui.MainGui.Note
02local player = game:GetService("Players")
03local badgeid = 2124518313
04local BadgeService = game:GetService("BadgeService")
05 
06player.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
13end)
0
Is this in the StarterGui? Dec_ade 47 — 4y
0
Yes, it is. Should i put it somewhere else? Sorry I'm still trying to learn this ItsJZaid 45 — 4y
0
Okay yeah, I just tried using serverscriptstorage and it prints line 08. ItsJZaid 45 — 4y

2 answers

Log in to vote
2
Answered by
uhi_o 417 Moderation Voter
4 years ago
Edited 4 years ago

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.

01local player = game:GetService("Players")
02local badgeid = 2124518313
03local BadgeService = game:GetService("BadgeService")
04 
05player.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
15end)

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.

0
Upvoted. raid6n 2196 — 4y
Ad
Log in to vote
1
Answered by
raid6n 2196 Moderation Voter Community Moderator
4 years ago
Edited 4 years ago

Do if BadgeService:UserHasBadgeAsync(player.UserId, badgeid) then on line 7.

https://developer.roblox.com/en-us/api-reference/function/BadgeService/UserHasBadgeAsync

Answer this question