LordGando
|
  |
| Joined: 05 Jul 2011 |
| Total Posts: 6723 |
|
|
| 19 Jun 2013 07:01 PM |
My first legit script (:
wait(5) a=Instance.new("Hint",workspace) a.text = "Gando Admin Loaded" a:wait(5) a:remove() end end end
Its not working
-LᴏʀᴅGᴀɴᴅᴏ |
|
|
| Report Abuse |
|
|
LordGando
|
  |
| Joined: 05 Jul 2011 |
| Total Posts: 6723 |
|
| |
|
LordGando
|
  |
| Joined: 05 Jul 2011 |
| Total Posts: 6723 |
|
| |
|
|
| 19 Jun 2013 07:04 PM |
I think where you went wrong was the a:wait(). You just need
wait() not
a:wait() |
|
|
| Report Abuse |
|
|
|
| 19 Jun 2013 07:05 PM |
| ...and what's with all the ends, did you rip it off a previous script? |
|
|
| Report Abuse |
|
|
|
| 19 Jun 2013 07:05 PM |
wait(5) a=Instance.new("Hint",workspace) a.text = "Gando Admin Loaded" wait(5) a:remove() end end end
_//:Regards/BoysRule2013:\\_ |
|
|
| Report Abuse |
|
|
LordGando
|
  |
| Joined: 05 Jul 2011 |
| Total Posts: 6723 |
|
|
| 19 Jun 2013 07:06 PM |
No, I look at alot of scripts and they all have like 5 ends in this wierd shape way
-LᴏʀᴅGᴀɴᴅᴏ |
|
|
| Report Abuse |
|
|
LordGando
|
  |
| Joined: 05 Jul 2011 |
| Total Posts: 6723 |
|
| |
|
Preston99
|
  |
| Joined: 21 Sep 2008 |
| Total Posts: 247 |
|
|
| 19 Jun 2013 07:08 PM |
The ends are there for a reason. Don't throw them in willy-nilly.
Remove the ends, and make :remove() into :Remove()
and wait()
not a:wait() |
|
|
| Report Abuse |
|
|
|
| 19 Jun 2013 07:10 PM |
local a = Instance.new("Hint") a.Parent = game.Workspace a.Text = "Loading Gando's Admin Commands" wait(5) a.Text = "Loaded Gando's Admin Commands!" wait(3) a.Text = "System on Standby!" wait(.5)
_//:Regards/BoysRule2013:\\_ |
|
|
| Report Abuse |
|
|
|
| 19 Jun 2013 07:11 PM |
whoops forgot!!!
local a = Instance.new("Hint") a.Parent = game.Workspace a.Text = "Loading Gando's Admin Commands" wait(5) a.Text = "Loaded Gando's Admin Commands!" wait(3) a.Text = "System on Standby!" wait(.5) a:remove()
_//:Regards/BoysRule2013:\\_ |
|
|
| Report Abuse |
|
|
LordGando
|
  |
| Joined: 05 Jul 2011 |
| Total Posts: 6723 |
|
| |
|
1waffle1
|
  |
| Joined: 16 Oct 2007 |
| Total Posts: 16381 |
|
|
| 19 Jun 2013 07:19 PM |
| You don't understand how this works. Code is compiled based on what certain things represent. It doesn't matter what SHAPE it is. |
|
|
| Report Abuse |
|
|
Preston99
|
  |
| Joined: 21 Sep 2008 |
| Total Posts: 247 |
|
|
| 19 Jun 2013 07:21 PM |
wait()
local msg = Instance.new("Message", game.Worskpace) msg.Text = "Gando Admin Loaded" wait(5) msg:Remove()
There. |
|
|
| Report Abuse |
|
|