I’ve having problems where chat appears behind my name tag Gui. I want the chat to appear infront of if tho.
I’ve read through this question BillboardGui nametag interferes with chat but the solution does not work. I am creating a new topic as I have been told off in the past for bumping old topics. Don’t shoot the messenger
local function CreateGui()
local BillboardGui = Instance.new('BillboardGui')
BillboardGui.AlwaysOnTop = true
BillboardGui.MaxDistance = 50
BillboardGui.Name = 'NameTag'
BillboardGui.Size = UDim2.new(8, 0, 2, 0)
BillboardGui.LightInfluence = 0
BillboardGui.StudsOffset = Vector3.new(0, 4, 0)
return BillboardGui
end
I’ve tried both Global and Sibling ZIndex behaviours.