of     1   

LukeGabrieI
#228370457Sunday, December 03, 2017 8:32 AM GMT

I also asked this question on scriptinghelpers, here's what I basically wrote down. Basically, there's a custom mod where if I'm able to put my name, and I type something, it'll say Owner behind it. I'm wondering if I could do it for a universal thing, meaning that from a group's standpoint, I can add chat tags behind people's names depending on their rank in the group. Here's my attempt. #code game.Players.PlayerAdded:Connect(function(player) local rank = player:GetRankInGroup(3164314) local tags = Instance.new("IntValue",player) tags.Name = "Tags" local tag1 = {"LukeGabrieI", "Owner", Color3.fromRGB(255,0,0)} local tag2 = {"NameHere", "Best Friend", Color3.fromRGB(255,255,255)} local tag3 = {"Security", Color3.fromRGB(255,255,0)} local tables = {tag1,tag2,tag3} for i,v in pairs (tables) do if rank == 255 and player.Name == v[1] then local tag = Instance.new("Color3Value",tags) tag.Name = v[2] tag.Value = v[3] elseif rank == 254 and player.Name == v[2] then local tag = Instance.new("Color3Value",tags) tag.Name = v[2] tag.Value = v[3] elseif player:GetRoleInGroup(3164314) == 4 then local tag = Instance.new("Color3Value",tags) tag.Name = v[1] tag.Value = v[2] end end end) The first two work perfectly, but the last one doesn't work. How would I have it so that these Chat Tags can correlate to the Group Rank? A previous script I used that included one's rank in the leaderboard worked. Here's the main part of the script. #code local grouprank = Instance.new("StringValue", stats) grouprank.Name = "Rank" local rank = player:GetRoleInGroup(3164314) -- Insert the group ID for whatever group you want ranks displayed for here. if rank ~= 0 then grouprank.Value = rank else grouprank.Value = "Guest" end Hopefully you can figure out a problem with the script, or at least find a way to fix it, thank you. -LukeGabrieI
Soybeen
#228371138Sunday, December 03, 2017 9:07 AM GMT

-- iterate through your special people first, then your ranks local admins = { ["LukeGabrieI"] = {name = "Owner", color = Color3.fromRGB(255,0,0)}, ["Other"] = {name = "Best Friend", color = Color3.fromRGB(255,255,255)}, } local ranks = { ["Security"] = {name = "Security",color = Color3.fromRGB(255,255,0)} } game.Players.PlayerAdded:connect(function(player) local role = player:GetRoleInGroup(3164314) local stats = Instance.new("Folder",player) stats.Name = "leaderstats" local tags = Instance.new("IntValue",player) if admin[player.Name] then -- you should use the UserId in case they change their name tags.Name = admin[player.Name].name elseif (not admin[player.Name]) and ranks[role] then tags.Name = ranks[role].name end end)
LukeGabrieI
#228382852Sunday, December 03, 2017 4:01 PM GMT

will this include the color?
LukeGabrieI
#228385214Sunday, December 03, 2017 4:48 PM GMT

I'm trying to have it so that whenever someone chats, it'll have a tag that'll say "Owner" or "Security", depending on their Group Rank.
Soybeen
#228410990Monday, December 04, 2017 1:45 AM GMT

Having a leaderstat does not affect chat color, you will have to edit the chat scripts for that.

    of     1