|
| 08 Mar 2013 01:44 PM |
| I need a regen button for my boats. But I have a script in my boats so after they blow up, the parts go away. this deletes the model. So I need a regen that saves a copy of the model. If this is impossible, please tell me another way to do this. |
|
|
| Report Abuse |
|
|
RoScripts
|
  |
| Joined: 27 Oct 2012 |
| Total Posts: 1824 |
|
|
| 08 Mar 2013 01:46 PM |
Save it in lighting.
Everytime you regen, make a copy of it and move it to workspace. |
|
|
| Report Abuse |
|
|
|
| 08 Mar 2013 02:06 PM |
| I thought you would need to do something like that, but since i'm new to Lua how exactly would I do that? |
|
|
| Report Abuse |
|
|
| |
|
| |
|
|
| 08 Mar 2013 03:41 PM |
| Stop bumping and be patient. |
|
|
| Report Abuse |
|
|
Zeblote
|
  |
| Joined: 06 Mar 2013 |
| Total Posts: 10 |
|
|
| 08 Mar 2013 03:43 PM |
http://roblox.wikia.com/wiki/Regens ^ Look at the "Regeneration Buttons" part of the page. |
|
|
| Report Abuse |
|
|
| |
|
| |
|
MrChubbs
|
  |
| Joined: 14 Oct 2010 |
| Total Posts: 4969 |
|
|
| 08 Mar 2013 05:42 PM |
local CP = BoatModel:Clone() function Respawn() local a = CP:clone() a.Parent = workspace a:MakeJointS() end WhateverTheEventIs:connect(Respawn) |
|
|
| Report Abuse |
|
|
| |
|