Hello, Ive been looking for a DarkRP Scoreboard With Custom Group Labels, and have not found any luck :/, I was wondering if something that, if your group moderator, your name on the scoreboard would flash green, and admins would be blue, super admins would be red, and owner would be clear, if anyone would help me out, it would be a great pleaser! (I have seen this on servers, so I know this is possible)
Dont mean to bump my thread, but I've seen a lot of servers lately having this.
You would have to check what group the player is in, then set the panel color accordingly. ie.
[code]
-- Panel
if (ply:IsAdmin()) then
draw.RoundedBox(6,0,0,400,60,Color(255,0,0,255))
else
draw.RoundedBox(6,0,0,400,60,Color(0,255,0,255))
end
[/code]
Thank you soo much! Where would I place this script?
Sorry, you need to Log In to post a reply to this thread.