Chat bubbles coming from part overlap with eachother

self explanatory, the chat bubble of what im saying doesnt stack up like it does with normal chat but instead just overlaps

here’s an image

what it’s supposed to look like

thanks,
-luke

1 Like

You can do this experimentally. We’ll use variables so you can get an idea.

local variables = {
    Var1 = "",
    Var2 = "",
    Var3 = ""
}

game.Players.PlayerAdded:Connect(function(player)
    player.Chatted:Connect(function(message)
        variables.Var3 = variables.Var2
        variables.Var2 = variables.Var1
        variables.Var1 = message
        print("- - -")
        print("3: "..variables.Var3)
        print("2: "..variables.Var2)
        print("1: "..variables.Var1)
    end)
end)

You can use this to try to make 3 UIs stacked on top of the radio, instead of chat bubbles.

Of course I’m overcomplicating this, but the UIs can be customised heavily.

1 Like

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.