Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
-5

Chat gui not showing gold chat? [closed]

Asked by 10 years ago

What did I do wrong? It doesn't show gold chat when I join my game.:

game:GetService("StarterGui"):SetCoreGuiEnabled("PlayerList", false) -- Ctrl+F "API DOCS" to get the docs

--settings.  Don't make these local.
ALLOW_BC_ICONS = true -- Players' BC icons will be shown next to their names
PRIMARY_LEADERSTATS_ENABLED = true -- Leaderstats will appear in large text under the player's name
SHOW_PRIMARY_LEADERSTAT_NAMES = true -- Primary leaderstats will have their names shown next to them
TEAMS_ENABLED = true -- Teams will appear.

CUSTOM_CHAT_COLORS = { -- add your name = Color3 to give yourself a custom chat color.
    -- if you don't choose a chat color, but you do add a custom icon, your color will appear as golden
    -- if you don't want golden but you do want an icon, you can set your chat color to Color3.new(1,1,1)
    rogers888 = Color3.new(255/255, 255/255, 0/255)
}

HIDDEN_PLAYERS = { -- add playerName=true to prevent them from appearing on the leaderboard
    example_player_name = true
}

CUSTOM_LABEL_BACKGROUND_COLORS = { -- add playerName=color3 to give certain players a unique backgroundColor
    rogers888 = Color3.new(255/255, 255/255, 0/255)
}

CUSTOM_LABEL_NAME_COLORS = { -- add playerName=color3 to give certain players a uniquely-colored name
    rogers888 = Color3.new(255/255, 255/255, 0/255)
}

ADMINS =
{ -- add your name = 1 to get a star icon.  Add your name = image to get a custom icon.
    rogers888 = 'http://www.roblox.com/asset/?id=105897927',
    ['erik.cassel'] = 1,
    ['david.baszucki'] = 1,
    ['matt dusek'] = 1,
}

ADMIN_ICON_WIDTHS = {
    rogers888 = 30
}

ALIASES = {
    player1 = "PLAYER X",
    rogers888 = "rogers888"
}


2
Please edit your post and to use the Lua code formatting feature. BlueTaslem 18071 — 10y

Closed as Not Constructive by adark

This question has been closed because it is not constructive to others or the asker. Most commonly, questions that are requests with no attempt from the asker to solve their problem will fall into this category.

Why was this question closed?