[PLS HELP] Increase chat bubble size on an NPC

Hello, I was creating some chat bubbles in an npc, however from a distance it is not possible to visualize it and I need to know how to increase the size of a bubble
I use translator, I would appreciate your help

while wait(0.1) do
	if workspace:WaitForChild("Sleep") then
		local head = script.Parent.Head
		local chat = game:GetService("Chat")



		
		
		wait(1)
		chat:Chat(head,"xd")
	end
end
1 Like

Hey, if you wanted to you could just use Billboard guis and put a textlabel in it, scale it properly and just edit the text values from within the script. Besides that, I don’t think there’s any other way to do the effect you want. (Unless you just do clientsided gui stuff)

1 Like

This won’t let you stack messages but you can definitely code that in if you wanted to.

Is there no way to increase the size?

1 Like

Natively? No I don’t think so as that requires CoreGui access.

1 Like

This has changed with the new chat update; you CAN now natively increase the chat size, but it will apply to all bubblechats so the first method is still valid.