|
| 02 Feb 2014 03:28 PM |
function OnEntered() M = Workspace.Message M.Text = "Welcome To Dodge The Lava Balls!" wait(2) M.Text = "We are adding new maps frequently!" wait(2) M.Text = "In this game you must dodge the lava balls!" wait(1) M.Text = "But, there are different maps too!" wait(1) M.Text = "You must get to the end of each map for points!" wait(1) M.Text = "Enjoy!" wait(1) M.Text = "" end script.Parent.PlayerAdded:connect(OnEntered)
I think this is wrong, but I forgot how to do player has entered functions! |
|
|
| Report Abuse |
|
|
shawnyg
|
  |
| Joined: 21 Apr 2011 |
| Total Posts: 1428 |
|
|
| 02 Feb 2014 03:29 PM |
script.Parent.PlayerAdded:connect(function(plr) M = Instance.new("Message", plr) M.Text = "Welcome To Dodge The Lava Balls!" wait(2) M.Text = "We are adding new maps frequently!" wait(2) M.Text = "In this game you must dodge the lava balls!" wait(1) M.Text = "But, there are different maps too!" wait(1) M.Text = "You must get to the end of each map for points!" wait(1) M.Text = "Enjoy!" wait(1) M:Destroy() end)
~Hope I helped! If you need a script, PM me.~ ~The G~ ~CAT General Shawnyg~ |
|
|
| Report Abuse |
|
|
|
| 02 Feb 2014 03:34 PM |
Won't work does it need to be in a local script?
|
|
|
| Report Abuse |
|
|
|
| 02 Feb 2014 03:35 PM |
Use this one.
script.Parent.PlayerAdded:connect(function(plr) M = Instance.new("Message", plr.PlayerGui) M.Text = "Welcome To Dodge The Lava Balls!" wait(2) M.Text = "We are adding new maps frequently!" wait(2) M.Text = "In this game you must dodge the lava balls!" wait(1) M.Text = "But, there are different maps too!" wait(1) M.Text = "You must get to the end of each map for points!" wait(1) M.Text = "Enjoy!" wait(1) M:Destroy() end)
Mr.Teddy for President ˁ(⦿ᴥ⦿)ˀ |
|
|
| Report Abuse |
|
|
shawnyg
|
  |
| Joined: 21 Apr 2011 |
| Total Posts: 1428 |
|
|
| 02 Feb 2014 03:35 PM |
Fail, messed up on the connection line. Replace the first line with this. Normal script
game.Players.PlayerAdded:connect(function(plr)
~Hope I helped! If you need a script, PM me.~ ~The G~ ~CAT General Shawnyg~ |
|
|
| Report Abuse |
|
|
|
| 02 Feb 2014 03:36 PM |
That goes to my script too.
Mr.Teddy for President ˁ(⦿ᴥ⦿)ˀ |
|
|
| Report Abuse |
|
|
shawnyg
|
  |
| Joined: 21 Apr 2011 |
| Total Posts: 1428 |
|
|
| 02 Feb 2014 03:44 PM |
All you did was copy mine...
~Hope I helped! If you need a script, PM me.~ ~The G~ ~CAT General Shawnyg~ |
|
|
| Report Abuse |
|
|
|
| 02 Feb 2014 03:49 PM |
| It won't work still D: Must it be in a local script? |
|
|
| Report Abuse |
|
|