harleyb09
|
  |
| Joined: 23 Oct 2010 |
| Total Posts: 526 |
|
|
| 12 Mar 2012 02:55 AM |
| I need to make a timed round script where the round ends after 60 seconds and it shows the person with the most Knock outs as the winner. Please help, or don't post at all. |
|
|
| Report Abuse |
|
|
|
| 12 Mar 2012 04:44 AM |
| I'm sorry, but you should take your own advice. You shouldn't post either if you don't help us to help you. I can help you make a script, but I wont make one for you. You don't learn if I just make one for you. |
|
|
| Report Abuse |
|
|
CrasyTrex
|
  |
| Joined: 13 Mar 2011 |
| Total Posts: 761 |
|
|
| 12 Mar 2012 05:42 AM |
while wait(60) do l = Instance.new("IntValue", Workspace) x = Instance.new("StringValue", Workspace for i,v in pairs(game.Players:GetChildren()) do if v.leaderboard.KO's >= l.Value then l.Value = v.leaderboard x.Value = v.Name end end m = Instance.new("Message", Workspace) m.Text = ""..x.Value.." has one the tournament" wait(2) m:remove() x:remove() l:remove() end
|
|
|
| Report Abuse |
|
|
harleyb09
|
  |
| Joined: 23 Oct 2010 |
| Total Posts: 526 |
|
|
| 12 Mar 2012 01:39 PM |
| Thanks very much for all of your help. |
|
|
| Report Abuse |
|
|