| | How to make a Message script | |
|
|
| Author | Message |
|---|
Filthynate Intermediate Scripter

Posts: 11 Join date: 2010-08-02
 | Subject: How to make a Message script August 2nd 2010, 4:41 pm | |
| This is a simple script, that creates a message that all will see | Code: | [color=black]local m = Instance.new ("Message") m.Parent = game.Workspace m.Text = "WHATEVER YOU WANT" wait (put any time here) m:Remove () --Removes it after the time you put above[/color] |
And there ya go :) It is easy, and you can play around with it |
|
 | |
ninga95 Administrator


Posts: 116 Join date: 2010-07-30 Age: 16
 | Subject: Re: How to make a Message script August 2nd 2010, 4:42 pm | |
| You just copied this/ I can tell. Because you just got saying you needed help.
|
|
 | |
Filthynate Intermediate Scripter

Posts: 11 Join date: 2010-08-02
 | Subject: Re: How to make a Message script August 2nd 2010, 4:45 pm | |
| I didnt copy it, i neeed help, but I know the basics, so please dont judge me just cause I need help. I know easy stuff...llike a reset GUI or a Hint |
|
 | |
Filthynate Intermediate Scripter

Posts: 11 Join date: 2010-08-02
 | Subject: Re: How to make a Message script August 2nd 2010, 4:45 pm | |
| And a message aswell (Obviously) |
|
 | |
ninga95 Administrator


Posts: 116 Join date: 2010-07-30 Age: 16
 | Subject: Re: How to make a Message script August 2nd 2010, 4:47 pm | |
| Well why didn't you explain a little on how it works. |
|
 | |
Filthynate Intermediate Scripter

Posts: 11 Join date: 2010-08-02
 | Subject: Re: How to make a Message script August 2nd 2010, 4:48 pm | |
| Sorry, i will right now then :) |
|
 | |
ninga95 Administrator


Posts: 116 Join date: 2010-07-30 Age: 16
 | Subject: Re: How to make a Message script August 2nd 2010, 4:49 pm | |
| |
|
 | |
Filthynate Intermediate Scripter

Posts: 11 Join date: 2010-08-02
 | Subject: Re: How to make a Message script August 2nd 2010, 4:51 pm | |
| So, here is how the s | Code: | cript works, and the script itself again
[color=black] local m = Instance.new ("Message") --this states that a message is what your making (local m can be any letter, not only m) m.Parent = game.Workspace --States that Message will be in game.Workspace, its Parent ttherefore m.Text = "WHATEVER YOU WANT" --What teh message will say wait(ANY NUMBER) --how long before anything else happens m:Remove () --removes the message after whatever time u put above[/color] |
|
|
 | |
blueymaddog Administrator


Posts: 1108 Join date: 2010-12-09 Age: 13
 | Subject: Re: How to make a Message script January 17th 2011, 4:30 am | |
| I can make it three lines ;) | Code: | local m=Instance.new("Message",Workspace) m.Text="Text Here" game:GetService("Debris"):AddItem(m,[time here])
|
|
|
 | |
naknak Administrator


Posts: 855 Join date: 2010-07-30
 | Subject: Re: How to make a Message script January 17th 2011, 8:31 am | |
| | Code: | local m=Instance.new("Message",Workspace).Text="Text Here" game:GetService("Debris"):AddItem(m,[time here])
|
I win |
|
 | |
naknak Administrator


Posts: 855 Join date: 2010-07-30
 | Subject: Re: How to make a Message script January 17th 2011, 8:32 am | |
| |
|
 | |
asdfscripter Novice Scripter

Posts: 31 Join date: 2011-01-16
 | Subject: Re: How to make a Message script January 17th 2011, 12:59 pm | |
| | Code: | game:GetService("Debris"):AddItem(Instance.new("Message",Workspace).Text="TextHere",[time here]) |
|
|
 | |
asdfscripter Novice Scripter

Posts: 31 Join date: 2011-01-16
 | Subject: Re: How to make a Message script January 17th 2011, 1:00 pm | |
| one line? does this work? |
|
 | |
naknak Administrator


Posts: 855 Join date: 2010-07-30
 | Subject: Re: How to make a Message script January 17th 2011, 1:15 pm | |
| |
|
 | |
blueymaddog Administrator


Posts: 1108 Join date: 2010-12-09 Age: 13
 | Subject: Re: How to make a Message script January 18th 2011, 3:50 am | |
| I win. u can't use two '=' in one line like that, foo. test it in the output. >:P
_________________ blueymaddog Administrator • Moderator • Expert Scripter PM: blueymaddog<+1 post. ujelly?> |
|
 | |
| | How to make a Message script | |
|