Klink45
|
  |
| Joined: 06 Jun 2011 |
| Total Posts: 26054 |
|
|
| 03 May 2015 03:23 PM |
This is the first time I've really tried using tables, and this won't work. Why and can you fix it please?
local Wave = game.ReplicatedStorage.Waves.SmallWave local BigWave = game.ReplicatedStorage.Waves.LargeWave
local Waves = {Wave, BigWave} local WaveChoose = [math.random(1,#Waves)] WaveChoose:Clone()
|
|
|
| Report Abuse |
|
chimmihc
|
  |
| Joined: 01 Sep 2014 |
| Total Posts: 17143 |
|
|
| 03 May 2015 03:28 PM |
local Waves = {Wave, BigWave} local WaveChoose = Waves[math.random(1,#Waves)] WaveChoose:Clone()
I script -~ chimmihc |
|
|
| Report Abuse |
|