|
| 30 Apr 2014 07:30 PM |
| I have another GUI where the normal chat would go, so I want the chat to be displayed on the bottom right corner. Help is greatly appreciated. |
|
|
| Report Abuse |
|
|
|
| 30 Apr 2014 07:35 PM |
Chatted event. Get the message through the argument. Probably you would use it as such:
-- local script in starterpack
local gui = game.StarterGui.myguiname.Frame.TextLabel
local Chatted = function(msg) gui.Text = game.Player.LocalPlayer.Name .. ": " .. msg end
game.Players.LocalPlayer.Chatted:connect(Chatted)
-- http://wiki.roblox.com/index.php/Chatted_(Event) |
|
|
| Report Abuse |
|
|
|
| 30 Apr 2014 07:36 PM |
| Is that a perfect script or do I have to customize anything? Also, does this replace or copy the chat? |
|
|
| Report Abuse |
|
|
|
| 30 Apr 2014 07:39 PM |
| Change the name of the GUI to the name of yours, and you have to position the GUI yourself. You can set the chat to bubble chat and it still works. |
|
|
| Report Abuse |
|
|
| |
|
|
| 30 Apr 2014 07:55 PM |
| You sure the GUI goes in starterPack, or do you mean starterGui? |
|
|
| Report Abuse |
|
|
|
| 30 Apr 2014 08:26 PM |
| Sometimes it may need to go into workspace! If you are talking about the gui itself, then yes! |
|
|
| Report Abuse |
|
|
|
| 30 Apr 2014 08:27 PM |
Monkey you're killing me
The script goes into startergui. Change myguiname to the name of your gui. Its that simple. |
|
|
| Report Abuse |
|
|
| |
|
|
| 30 Apr 2014 08:33 PM |
| Where does the localScript go and is a Frame required? |
|
|
| Report Abuse |
|
|