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

How do I replace the default chat GUI?

Asked by 11 years ago

Iv'e got my chat gui working now, but the default chat appears over it. how do I fix this? Here's the code for reference:

01function UpdateOldLabels(Parent)
02    for i,v in pairs(Parent:GetChildren()) do
03        if v.Name:sub(1,4):lower() == "line" then
04            local LineNumber = v.Name:sub(5)
05            if LineNumber == "12" then
06                v:Destroy()
07            else
08                v.Name = "line"..tostring(tonumber(LineNumber) + 1)
09                v.Position = v.Position - UDim2.new(0,0,0,25)
10            end
11        end
12    end
13end
14 
15game:GetService("Players").PlayerAdded:connect(function(player)
View all 39 lines...

2 answers

Log in to vote
2
Answered by 11 years ago

Go to the Configure settings of your place, go to permissions, and change "Chat Type" to "Bubble".

0
thanks :) VentusWind78 25 — 11y
0
Accept my answer if I helped :) Articulating 1335 — 11y
Ad
Log in to vote
0
Answered by 11 years ago

Really easy fix, not scripting though. Go into the settings of your place under configure and toggle the classic chat. (You may keep bubble-chat if you so desire).

Answer this question