22ron
|
  |
| Joined: 17 Jun 2012 |
| Total Posts: 279 |
|
|
| 19 Sep 2013 10:21 PM |
Okay so I have a script that was made to clone a zombie and spawn is some were random in my game.
Hear it is.
wait (60) C= workspace.Zombie C:clone, (random ( 100, 100) (100,100))
HELP! |
|
|
| Report Abuse |
|
|
| |
|
|
| 19 Sep 2013 10:24 PM |
first: Free model?
second: while true do wait (60) C= workspace.Zombie C:clone ().Position = Vector3.new(math.random(-100,100),100,math.random(-100,100)) end |
|
|
| Report Abuse |
|
|
|
| 19 Sep 2013 10:25 PM |
forget to set its parent...
while true do wait (60) C= workspace.Zombie local v = C:clone () v.Position = Vector3.new(math.random(-100,100),100,math.random(-100,100)) v.Parent = workspace end |
|
|
| Report Abuse |
|
|
22ron
|
  |
| Joined: 17 Jun 2012 |
| Total Posts: 279 |
|
|
| 19 Sep 2013 10:26 PM |
| No not a free model I made it so it looked right for my game. |
|
|
| Report Abuse |
|
|
22ron
|
  |
| Joined: 17 Jun 2012 |
| Total Posts: 279 |
|
|
| 19 Sep 2013 10:27 PM |
| Yes and its Lua, not LUA, not lua. |
|
|
| Report Abuse |
|
|
|
| 19 Sep 2013 10:27 PM |
| Y u define it in the loop? |
|
|
| Report Abuse |
|
|
22ron
|
  |
| Joined: 17 Jun 2012 |
| Total Posts: 279 |
|
| |
|