Badge Description

Hello developers,

I’m making a Gui where you can see what badges you own in my game but i was wondering if it’s possible of getting the description of a badge using BadgeService so i don’t have to type it manually into a textlabel and it automatically updates.

Thanks in advance.

1 Like

Httpservice :tada:

You could use :GetBadgeInfoAsync

Example:

local BadgeInfo = game.BadgeService:GetBadgeInfoAsync(badgeid)
print(BadgeInfo.Description)

Yes, it is. That’s why the function GetBadgeInfoAsync is there.

Read about it here :
https://developer.roblox.com/en-us/api-reference/function/BadgeService/GetBadgeInfoAsync

1 Like

Oh yes. This helps alot, thank you!

1 Like