of     1   

Kurokku
#183669721Monday, February 15, 2016 3:23 PM GMT

I finished my custom chat gui, of as i thought, then this happens, every word i wrote in the chat got duped, if i reset, or left the game and rejoined the same server anyone know how to fix it, play this game, you'll know what im talking about http://www.roblox.com/games/363880910/Clockworks-Jackpot#!/about
Kurokku
#183669833Monday, February 15, 2016 3:25 PM GMT

It's annoying
ray_revenge
#183669912Monday, February 15, 2016 3:26 PM GMT

no code no service
Kurokku
#183669972Monday, February 15, 2016 3:27 PM GMT

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)
Kurokku
#183670864Monday, February 15, 2016 3:40 PM GMT

Help????????
Kurokku
#183673111Monday, February 15, 2016 4:10 PM GMT

bump

    of     1