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)
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!
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)..”%”
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
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
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.
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
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.