You can write your topic however you want, but you need to answer these questions:
- What do you want to achieve? Keep it simple and clear!
I am trying to make my custom character use bubble chat but for some reason it is not showing up.
- What is the issue? Include screenshots / videos if possible!
The bubble chat is not showing up above the players head. It works with a default character but not the custom one. I also forked the chat settings module but couldnt find anything relating to chatbar height except this excerpt. I messed with the values but it still didnt show.
module.MinimumWindowSize = UDim2.new(0.3, 0, 0.25, 0)
module.MaximumWindowSize = UDim2.new(1, 0, 1, 0) -- if you change this to be greater than full screen size, weird things start to happen with size/position bounds checking.
module.DefaultWindowPosition = UDim2.new(0, 0, 0, 0)
local extraOffset = (7 * 2) + (10 * 2) -- Extra chatbar vertical offset
module.DefaultWindowSizePhone = UDim2.new(0.5, 0, 0.5, extraOffset)
module.DefaultWindowSizeTablet = UDim2.new(0.4, 0, 0.3, extraOffset)
module.DefaultWindowSizeDesktop = UDim2.new(0.3, 0, 0.25, extraOffset)
UPDATE:
I looked into the players bubble chat gui and found out that the bar is not even being created in the first place if I use a custom character. Is bubble chat not allowed on custom characters or something?