12packkid
|
  |
| Joined: 24 Jun 2011 |
| Total Posts: 1418 |
|
|
| 11 Feb 2013 03:37 PM |
-- This script, was supposed to make a message that counts up the message in letters.
msg = Instance.new("Message", workspace) msg.Text = "The activation key has been entered" wait(0.1) msg.Text = tostring(1+1, msg.Text) repeat wait() until msg.Text wait(3) msg:Remove()
|
|
|
| Report Abuse |
|
|
jelly134
|
  |
| Joined: 25 Aug 2008 |
| Total Posts: 1137 |
|
|
| 11 Feb 2013 03:59 PM |
I assume you mean adds one letter each second or so until the full message is displayed?
msg = Instance.new("Message", game.Workspace) text = "The activation key has been entered" for n=1,string.len(text) do wait(0.1) msg.Text = string.sub(text,i,i) end wait(3) msg:Destroy()
- Jelly134 Wiki Staff Profile: http://wiki.roblox.com/index.php/User:Jelly134 |
|
|
| Report Abuse |
|
|
|
| 11 Feb 2013 04:06 PM |
string.upper string.lower???? |
|
|
| Report Abuse |
|
|
12packkid
|
  |
| Joined: 24 Jun 2011 |
| Total Posts: 1418 |
|
|
| 11 Feb 2013 05:29 PM |
| Jelly, you are always helpful, lol. |
|
|
| Report Abuse |
|
|
jelly134
|
  |
| Joined: 25 Aug 2008 |
| Total Posts: 1137 |
|
|
| 12 Feb 2013 12:35 PM |
Haha, I do try :)
- Jelly134 Wiki Staff Profile: http://wiki.roblox.com/index.php/User:Jelly134 |
|
|
| Report Abuse |
|
|