Badge script not working

Im trying to make a script that changes the text of a percentage of how much badges the player has. Ive tried for hours but I found no solutions. For example: if you have no badges the text would change to 0% if you have half the badges it would change to 50% and if you have all the badges in the game it would change to 100% Please help me on this script I would really appreciate it

local BadgeService = game:GetService("BadgeService")
local Players = game:GetService("Players")
local badgeIds = { 1155034684402098 }
local function onPlayerAdded(player)

	local success, result = pcall(function()
		return BadgeService:CheckUserBadgesAsync(player.UserId, badgeIds)
	end)

	if not success then
		warn("Error while checking if player", player.Name, "has badges:", result)
		return
	end

	local ownedBadgeIds = result

	if #ownedBadgeIds == 0 then
		script.Parent.Text = "0%"
	elseif #ownedBadgeIds == 1 then
		script.Parent.Text = "100%"
	end
end

Players.PlayerAdded:Connect(onPlayerAdded)
1 Like

You should make a table containing the badge ids, use the UserHasBadgeAsync while using a for loop to go through the table. Then take the number of badges and get the percentage of the total.

Sorry if this doesnt work ive never really tried to do something like this but i hope this helps!

Im kinda new to coding so idk how to make that

1 Like

You are supposed to loop through all the ids in the table and also, use UserOwnsBadgeAsync instead of wtv you are using now

local result 
local s,e = pcall(function()
   for i,v in ipairs(badgeIds) d
      table.insert(result, BadgeService:UserOwnsBadgeAsync(player.UserId, v)
   end
end)
print(result) —[[Table of booleans]]

Then you can do this on the client, with a remote event (you cannot edit text label on the server)

local badgelabel = — Text label here
local num= 0
for _,bool in ipairs(result) do
  if bool == true then num += 1 end
end
badgelabel.Text = tostring(num/#result*100)..”%”

And where do I put that script at?

First make a table

local totalbadges = 3

local badgeIDS = {
id1;
id2;
id3
}

Then do something like

for i, badgeIDS in pairs() do
local numberofbadge = #badgeIDS

local owned = plr:UserHasBadgeAsync(badgeIDS)

local percantage = #owned/totalbadges
end

Not 100% sure this will work i just whipped it up and, like ive said, i never tried this before

Everything inside a local script. Just add this piece of code at the top, inside the function

if player.Name ~= game.Players.LocalPlayer.Name then return end

Can you put it in a single message im kinda confused rn

Can you put it inside the script that i have right now

local BadgeService = game:GetService(“BadgeService”)
local Players = game:GetService(“Players”)
local badgeIds = { 1155034684402098; 12345678910; 132435677094488}

local function onPlayerAdded(player)
for i, badgeIDS in pairs() do
local numberofbadge = #badgeIDS

local owned = plr:UserHasBadgeAsync(badgeIDS)

local percantage = #owned/totalbadges

script.Parent.Text = " "… percentage
end
end)

Players.PlayerAdded:Connect(onPlayerAdded)

Something like this may work

A little bit confused as to what you’re asking. Is this what you want?

local BadgeService = game:GetService("BadgeService")
local Players = game:GetService("Players")
local badgeIds = { 1155034684402098 }
local function onPlayerAdded(player)

	local success, result = pcall(function()
		return BadgeService:CheckUserBadgesAsync(player.UserId, badgeIds)
	end)

	if not success then
		warn("Error while checking if player", player.Name, "has badges:", result)
		return
	end

	local ownedBadgeIds = result
	script.Parent.Text = math.round((#ownedBadgeIds/#badgeIds)*100).."%"
end

Screenshot 2024-09-02 213639
The percentage is suppose to change to whatever of how much badges the player has. so if the player has all the badges it would turn to 100% if they have half of the badges it would be 50% and if they have no badges it would be 0% but i have all the badges.
Screenshot 2024-09-02 213721

Final code:


local BadgeService = game:GetService("BadgeService")
local Players = game:GetService("Players")
local player = game.Players.LocalPlayer
local badgeIds = { 1155034684402098 }
local result = {}
local s,e = pcall(function()
    for i,v in ipairs(badgeIds) do
       table.insert(result, BadgeService:UserOwnsBadgeAsync(player.UserId, v)
    end
end)
print(result) —[[Table of booleans]]

if not s then
   warn(e)
   return
end

   local badgelabel = script.Parent
   local num= 0
   for _,bool in ipairs(result) do
        if bool == true then num += 1 end
    end
    badgelabel.Text = tostring(num/#result*100)..”%”
end

Script in local script in StarterGUi


There are errors and still doesnt work

Is this a server script inside of the textlabel? If so, you shouldn’t be using PlayerAdded. You can find the player object from looking at the parent of PlayerGui.

Okay so to make this work I’m going to change my code up there, becuase I’m not perfect

Screenshot 2024-09-02 214203

This is a text label in startergui, it should remain a local script

It still does not change the text with no errors

Can you show your current explorer setup and the script you are using now?