|
| 21 May 2012 12:48 PM |
print 'Gamescript Started' plrnum = game.Workspace.playernumber --playernumber, not value ing = game.Workspace.ingame --True/False hnt = game.Workspace.hint
while true do if plrnum.Value = > 1 hnt.Text = "We have enough players to being a swordfighting game!" wait(3) hnt.Text = "" p = math.random(1, plrnum.Value..) hnt.Text = "There are " p.. "possible fighters!" wait(2.5) hnt.Text = "Chosing the fighters" wait(0.1) hnt.Text = "Chosing the fighters." wait(0.1) hnt.Text = "Chosing the fighters.." wait(0.1) hnt.Text = "Chosing the fighters..." elseif end end
How is this looking so far? |
|
|
| Report Abuse |
|
| |
su8
|
  |
| Joined: 06 Mar 2009 |
| Total Posts: 6334 |
|
|
| 21 May 2012 01:38 PM |
You could do something like
for i=1,3 do blah.text = "blahh"..("."):rep(i) end
|
|
|
| Report Abuse |
|