if SERVER then -- when the server loads this script, tell it to send it to clients AddCSLuaFile("scoreboardcolors.lua") else -- when a client runs it, add the hook function MySBColors(ply) if ply:SteamID() == "PUT A STEAMID HERE" then return Color(255, 0, 255) end end hook.Add("TTTScoreboardColorForPlayer", "MySBColors", MySBColors) end