roleo1122
|
  |
| Joined: 28 Jan 2013 |
| Total Posts: 971 |
|
|
| 14 Jul 2014 07:05 PM |
| I need a Game.Workapace that deltetes the whole game and all the parts |
|
|
| Report Abuse |
|
|
roleo1122
|
  |
| Joined: 28 Jan 2013 |
| Total Posts: 971 |
|
| |
|
LetUsGame
|
  |
| Joined: 09 Nov 2013 |
| Total Posts: 199 |
|
|
| 14 Jul 2014 07:07 PM |
| You need a Game.Workspace? Just go to studio and do Ctr + N |
|
|
| Report Abuse |
|
|
Ulrakid11
|
  |
| Joined: 31 Dec 2010 |
| Total Posts: 1587 |
|
|
| 14 Jul 2014 07:07 PM |
If you need to delete everything in workspace, use
workspace:ClearAllChildren() |
|
|
| Report Abuse |
|
|
BruceAB12
|
  |
| Joined: 19 Jan 2012 |
| Total Posts: 3238 |
|
|
| 14 Jul 2014 07:08 PM |
Um
Game.Workspace:ClearAllChildren() |
|
|
| Report Abuse |
|
|
Tynexx
|
  |
| Joined: 11 Jul 2012 |
| Total Posts: 1559 |
|
| |
|
Ulrakid11
|
  |
| Joined: 31 Dec 2010 |
| Total Posts: 1587 |
|
|
| 14 Jul 2014 07:08 PM |
A less efficient method would be
c = workspace:GetChildren() for i = 1, #c do c[i]:Destroy() end |
|
|
| Report Abuse |
|
|