OldGoldieJoin Date: 2010-08-17 Post Count: 8210 |
How do i remove the chat bubble where it does not appear? I want no classic chat or bubble, but i know there is a way to remove bubble. How do i do it? |
|
|
OldGoldieJoin Date: 2010-08-17 Post Count: 8210 |
There is no none option. There is only classic, both and bubble. |
|
|
|
just select classic if you dont want the bubble, its only the chat menu on the top-left,
both makes it bubble on your head and chat menu,
bubble is only the chat bubble on your head
--crazycamkalani |
|
OldGoldieJoin Date: 2010-08-17 Post Count: 8210 |
i know... this isn't what i'm asking
i don't want classic
i don't want bubble
it's been done.
i'm asking how do i do it
i want a chat gui with no bubble chat. |
|
|
You freaking idiots. Read the whole thing! He doesn't want the classic chat nor the bubble chat, but sadly as far as I know it's one, the other, or both and not neither... Sorry.
"U BROKE THE TV U IDIOT!" - CeaselessSoul |
|
vaati307Join Date: 2008-08-18 Post Count: 2763 |
You want the Classic chat gone, and the Bubble chat gone. You are wanting a GUI that displays the chat, is this correct? |
|
OldGoldieJoin Date: 2010-08-17 Post Count: 8210 |
Yes, i recently found out welding a fake head to the character and welding the real head to the baseplate or a hidden brick will work. But i have no clue how to do this. |
|
|
Unfortunately it is impossible to remove the Chat entirely from a ROBLOX place (unless you remove RobloxGui, which is locked to Scripts/LocalScript).
You can ENTIRELY create a ChatGui though.
Just make a Textbox, button, and a Script witch when a user types in a message in the TextBox and presses the Button, the script creates a new Label saying ..player.Name.."- "..message or something like that.
So when Bobby enters 'hello' in the Box, and presses the Button, the script will create a new Label saying 'Bobby - hello'. but it is inpossible to remove the whole chat, soz. |
|
|
Sorry, I think I misunderstood you.
If you are wanting a chat GUI looking like a BLUE chat BUBBLE (red also)
Well. Use this. chat(character.Head, "Message", Enum.Style.Blue/green/red)
Hope this helped
btw replace Blue/green/red with the color you want. |
|
OldGoldieJoin Date: 2010-08-17 Post Count: 8210 |
I just told you how to do it ._. But i don't know how i would be able to do it scripting terms. Weld the head to the baseplate or away somewhere and make a fake head. |
|
OldGoldieJoin Date: 2010-08-17 Post Count: 8210 |
b1 |
|
|
w = Instance.new("Weld",char.Head)
w.C0 = w.Parent
w.C1 = Baseplate
"U BROKE THE TV U IDIOT!" - CeaselessSoul |
|
|
Welding the head to the baseplate sounds a tad odd.
Wouldn't that break the player's joints therefore killing them? (Unconfirmed, but likely)
The way you need to do this, is create your own character for them, then set their player's character to that. That may or may not disable chat. Probably not.
"Its been done before"
Link that maybe? |
|
|
Move the neck, and make a fake head, and then use chat bubble, and make custom chat |
|
OldGoldieJoin Date: 2010-08-17 Post Count: 8210 |
Well my version works with the problem of the camera being far away.
I can't track the fake head that's my only problem |
|
OldGoldieJoin Date: 2010-08-17 Post Count: 8210 |
local char = game.Players.LocalPlayer.Character
while wait() do
if char:FindFirstChild("Fake Head") then
game.Workspace.CurrentCamera.CameraSubject = char["Fake Head"]
game.Workspace.CurrentCamera.Focus = CFrame.new(game.Workspace.Part.Position)
end
end
^^
that's the track script |
|
TunicusJoin Date: 2013-02-16 Post Count: 3165 |
CameraSubject in terms of Character is always on humanoid |
|
|
CoreGuiSettings = {
Chat = false;
}
for i,v in pairs(CoreGuiSettings) do
game.StarterGui:SetCoreGuiEnabled(tostring(i),v)
end
But sadly that will entirely disable chat meaning you wont even be able to type. |
|
|
Yes, but you can make a pseudo chat. Just a GUI chat-bar and a GUI chat (none ROBLOX made of course).
"U BROKE THE TV U IDIOT!" - CeaselessSoul |
|
|
I apologize for raising a dead thread but I need to know how to do the same thing he is asking, is there any one who has the answer to his question? |
|
XephyricJoin Date: 2009-03-26 Post Count: 2270 |
Set it to Classic and then
game.StarterGui:SetCoreGuiEnabled("Chat", false) in a localscript in StarterGui |
|
128GBJoin Date: 2014-04-17 Post Count: 8056 |
@Xe
That gets rid of the chat bar, he didn't want that |
|
|
xe I still want the little bar in the bottom you can type messages with, but i want the classic chat gone, would what you are suggesting actually work that way?
|
|