local OwnerID = 90519431 -----Put Owner ID here
local AdminID = 10057146 -----And admin ID here
function rankCheck(player)
if player.UserId == OwnerID then
return "[OWNER] " ------ That is the owner tag
elseif player.UserId == AdminID then
return "[ADMIN] " ------ That is the admin tag
else
return "" ----- This is the random player don't remove or it'll break
end
end
function NewLabel(parent, msg, player)
newchatline = Instance.new("TextLabel", parent)
newchatline.Text = rankCheck(player) .. "" .. player.Name.. ": " ..msg ------ This checks for rank at the function rankCheck(player)
newchatline.Size = UDim2.new(1,0,0,25)
newchatline.Position = UDim2.new(0,0,1,-25)
newchatline.Font = "SourceSansBold"
if player.UserId == OwnerID then
newchatline.TextColor3 = Color3.new(1,0,1)
elseif player.UserId == AdminID then
newchatline.TextColor3 = Color3.new(0,1,1)
else
newchatline.TextColor3 = Color3.new(1,1,1)
end
newchatline.TextStrokeTransparency = 0
newchatline.BackgroundTransparency = 1
newchatline.BorderSizePixel = 0
newchatline.FontSize = "Size24"
newchatline.TextXAlignment = "Left"
newchatline.TextYAlignment = "Top"
newchatline.ClipsDescendants = true
newchatline.Name = "line1"
end
function UpdateOldLabels(Parent)
for i,v in pairs(Parent:GetChildren()) do
if v.Name:sub(1,4):lower() == "line" then
local LineNumber = v.Name:sub(5)
if LineNumber == "12" then
v:Destroy()
else
v.Name = "line"..tostring(tonumber(LineNumber) + 1)
v.Position = v.Position - UDim2.new(0,0,0,25)
end
end
end
end
game:GetService("Players").PlayerAdded:connect(function(player)
player.Chatted:connect(function(msg)
for _,v in ipairs(game:GetService("Players"):GetChildren()) do
UpdateOldLabels(v:WaitForChild("PlayerGui").CustomChat.ChatHold)
UpdateOldLabels(game:GetService("StarterGui").CustomChat.ChatHold)
NewLabel(v:WaitForChild("PlayerGui").CustomChat.ChatHold, msg, player)
NewLabel(game:GetService("StarterGui").CustomChat.ChatHold, msg, player)
end
end)
end) |