|
| 13 Aug 2011 09:21 PM |
Well, I'm still trying to find out how to script chat, but as a beginning, I'll ask for help.
Does anyone know if an Alias can be scripted? Example, I go in game, and when I chat, it goes up as "Joe", instead of "Virtualdarks".
Is it possible? If it is, can anyone provide me with the scripts for it?
-Virtualdarks |
|
|
| Report Abuse |
|
|
|
| 13 Aug 2011 09:25 PM |
Also, does anyone know if you can change the name color while chatting?
-Virtualdarks |
|
|
| Report Abuse |
|
|
|
| 13 Aug 2011 09:29 PM |
| The ROBLOX Chat system is uneditable, you'd have to make your own. |
|
|
| Report Abuse |
|
|
swmaniac
|
  |
| Joined: 28 Jun 2008 |
| Total Posts: 15773 |
|
|
| 13 Aug 2011 09:30 PM |
| The only way is to completely remake the chat system and set bubble chat, sorry dude. Roblox doesn't like it when we mess with things like the chat system. ._. |
|
|
| Report Abuse |
|
|
|
| 13 Aug 2011 09:40 PM |
._.
Well. That's rather disappointing.
I wish free models would just have a editible chat system. I seem to never have a good starting place.
Anyone with a link for me to start learning about chat/GUIs?
-Virtualdarks |
|
|
| Report Abuse |
|
|
swmaniac
|
  |
| Joined: 28 Jun 2008 |
| Total Posts: 15773 |
|
|
| 13 Aug 2011 09:44 PM |
A couple:
http://wiki.roblox.com/index.php/TextLabel http://wiki.roblox.com/index.php/Tables http://wiki.roblox.com/index.php/Chatted
You'll need 'em. |
|
|
| Report Abuse |
|
|
|
| 13 Aug 2011 09:48 PM |
| There is a free model that I know of that is a user-created chat system, however... It's a free model. ._. |
|
|
| Report Abuse |
|
|
|
| 13 Aug 2011 10:01 PM |
@ElectricBlaze
Do you remember it's name?
I searched up Custom Chatbox, Chat, Chatbox, Chat box, Talk, et cetera. No avail.
-Virtualdarks |
|
|
| Report Abuse |
|
|
|
| 13 Aug 2011 10:02 PM |
http://www.roblox.com/Chat2-Gui-item?id=44060162
Make the game bubble chat only, and use this. |
|
|
| Report Abuse |
|
|
|
| 13 Aug 2011 10:05 PM |
Hmm... seems interesting.
-Virtualdarks |
|
|
| Report Abuse |
|
|
|
| 13 Aug 2011 10:06 PM |
| It certainly is, I used it when I was a beginner at Lua... :3 |
|
|
| Report Abuse |
|
|
|
| 13 Aug 2011 10:20 PM |
Hmm... well, I haven't tried it yet, I'm still trying to write my own. I'll use it as a last result.
So, guys. I wrote a script. Ended in failure. Help, please? :D
--
Game.Players.PlayerAdded:connect(function(player) player.Chatted:connect(function(msg) game.StarterGui.ChatBoxGui.Frame.Text1.Text = player.. ": " ..msg end) end)
--
-Virtualdarks |
|
|
| Report Abuse |
|
|
|
| 13 Aug 2011 10:21 PM |
"game.StarterGui"
??????
player.PlayerGui |
|
|
| Report Abuse |
|
|
|
| 13 Aug 2011 10:23 PM |
Nooooo! Okay, I'll try it out.
Hope you don't have to answer another anothering question from me. :D
-Virtualdarks |
|
|
| Report Abuse |
|
|
| |
|
|
| 13 Aug 2011 10:26 PM |
Game.Players.PlayerAdded:connect(function(player) player.Chatted:connect(function(msg) player.StarterGui.ChatBoxGui.Frame.Text1.Text = player.. ": " ..msg end) end)
--
Nope. Still not working. ._.
Lua seems to hate me. :c
-Virtualdarks |
|
|
| Report Abuse |
|
|
| |
|
|
| 13 Aug 2011 10:34 PM |
Game.Players.PlayerAdded:connect(function(player) player.Chatted:connect(function(msg) player.StarterGui.ChatBoxGui.Frame.Text1.Text = player.Name.. ": " ..msg end) end)
--
Nope. I'm still here. T_T
This does association with EVERY player's "chatbox", right?
-Virtualdarks |
|
|
| Report Abuse |
|
|
|
| 13 Aug 2011 10:38 PM |
@ElectricBlaze
You're pretty patient. Besides the other guys who helped my script my laptops. THAT project nearly made me quit. :3
-Virtualdarks |
|
|
| Report Abuse |
|
|
|
| 13 Aug 2011 10:41 PM |
Well, I guess my helpers quit. ._.
Can anyone else help?
-Virtualdarks |
|
|
| Report Abuse |
|
|
|
| 13 Aug 2011 10:44 PM |
| Sorry, can't help right now, I'm on my iPod. I'll be back in an hour or so, so I'll help you then. Oh, and, no, I'll help you make it appear on everyone's screen then. |
|
|
| Report Abuse |
|
|
|
| 13 Aug 2011 10:46 PM |
| By the way, that's like... the first time anyone has ever told me I'm patient. O_o |
|
|
| Report Abuse |
|
|
|
| 13 Aug 2011 10:47 PM |
@ElectricBlaze
Oh, cool. But I have to go to sleep. Can you PM me? And plus, I solved it!:
Game.Players.PlayerAdded:connect(function(player) player.Chatted:connect(function(msg) player.PlayerGui.ChatBoxGui.Frame.Text1.Text = player.Name.. ": " ..msg end) end)
I just need it for ALL players now.
-Virtualdarks |
|
|
| Report Abuse |
|
|
|
| 13 Aug 2011 10:53 PM |
I'll try typing it on here...
Game.Players.PlayerAdded:connect(function(player) player.Chatted:connect(function(msg) for i,v in pairs(game.Players:GetPlayers()) do v.PlayerGui.ChatBoxGui.Frame.Text1.Text = player.Name.. ": " ..msg end end) end)
|
|
|
| Report Abuse |
|
|