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.
Httpservice
You could use :GetBadgeInfoAsync
:GetBadgeInfoAsync
Example:
local BadgeInfo = game.BadgeService:GetBadgeInfoAsync(badgeid) print(BadgeInfo.Description)
Yes, it is. That’s why the function GetBadgeInfoAsync is there.
GetBadgeInfoAsync
Read about it here : https://developer.roblox.com/en-us/api-reference/function/BadgeService/GetBadgeInfoAsync
Oh yes. This helps alot, thank you!