You can do something like that (In a Script in ServerScriptService)
local ReplicatedStorage = game:GetService("ReplicatedStorage")
local PlayersListPlus = require(ReplicatedStorage.PlayersListPlus)
local Players = game:GetService("Players")
local BadgeService = game:GetService("BadgeService")
local BadgeID = 0 -- Replace the 0 to the badgeId
local ImageId = "rbxassetid://0" -- Replace the 0 to the Custom Icon
Players.PlayerAdded:Connect(function(Player)
local UserHasBadge = BadgeService:UserHasBadgeAsync(Player.UserId, BadgeID)
if UserHasBadge then
PlayersListPlus.AddCustomIconPlayer(Player, ImageId)
end
end)
If anyone else has troubles with the player list breaking when a new player joins you can go into the PlayersListPlus module and replace the for loop at line 360 with this one.
for i,newPlr in game.Players:GetPlayers() do
local plrTeam = getPlrTeam(newPlr)
if isNotNumber == false and (plrTeam == TeamName or (TeamName == "Neutral" and plrTeam == nil)) then
NoPlayer = false
local leaderstats = newPlr:WaitForChild("leaderstats")
local stat = leaderstats:WaitForChild(leaderstatsName)
local val = stat.Value
if typeof(val) ~= "number" then
isNotNumber = true
NoPlayer = true
else
TotalTeamValue += val
end
end
end
is there an open source testing place with all of the features to check out?
Also can this be used to like make teams of a certain size , when players join?
Or does it just display teams, that are already configured into teams elsewhere.
I few sentences at the top might help to described what exactly this is uses for, I cannot really tell. since it has block, it seems it is managing teams… or players or something.
I’ve become a fan of font.new() which allows developers to use custom fonts, by default PlayersListPlus does not support this yet. I’ve made some changes I’d like to hand over to you to implement if you’d like!
This is an example of it with bungee, I don’t prefer this font but it’s just for example.
for i,v in script:GetDescendants() do
if v:IsA("TextLabel") or v:IsA("TextButton") or v:IsA("TextBox") then
if typeof(Config.MenuFont) == "EnumItem" then
v.Font = Config.MenuFont
elseif typeof(Config.MenuFont) == "Font" then
v.FontFace = Config.MenuFont
end
end
end
Love the custom leaderboard but I’ve found a problem where it sometimes doesn’t load the teams on some of the clients. There are times where it’s just the player list without the teams, any way to fix this?
When you pass in only one argument for color constructor, it uses that argument for all parameters, Color3.fromRGB(255) = Color3.fromRGB(255, 255, 255)