of     1   

Billy94420
#575399Sunday, March 09, 2008 1:26 PM GMT

Please help it wont work when i try to make everything rgen every five minutes!
thatwascool
#576095Sunday, March 09, 2008 5:32 PM GMT

model = game.Workspace.MyModelName messageText = "Regenerating MyModelName..." message = Instance.new("Message") message.Text = messageText backup = model:clone() while true do wait(300) -- regenerate this model every 300 seconds message.Parent = game.Workspace model:remove() wait(4) -- display regen message for 4 seconds model = backup:clone() model.Parent = game.Workspace model:makeJoints() message.Parent = nil end Replace MyModelName with the name of your model. Group multiple things, open explorer and rename your model to what you want. Then, your model will regen every 5 mins!
Billy94420
#576232Sunday, March 09, 2008 6:23 PM GMT

HOw do i add that script to it and make everything regen?
Billy94420
#576243Sunday, March 09, 2008 6:26 PM GMT

can someone give me a step by step lesson!
grayrock
#578057Monday, March 10, 2008 1:08 AM GMT

i think your supposed to put that inside the model,i have my place (hopefully) regen everything every three minutes,yet im a newbie at scripting.
thatwascool
#578281Monday, March 10, 2008 2:12 AM GMT

Steps: 1. Copy the script 2. Insert it into explorer 3. Name a model in explorer 4. view the script and paste it in 5. change MyModelName to a model you just named it 6. To regen everything, name everything the exact same name. 7. Test your place 8. Destroy some stuff 9. If you get a message that says Regenerating Model, you are sucessful. 10. Enjoy your place.
MonkeyCakes
#579399Monday, March 10, 2008 7:12 PM GMT

Here is how: 1.Open tools in ROBLOX Studio. 2.Choose insert the object. 3.Choose script. 4.Insert it into model you want to regen open the script by double clicking and pating it in. (Optional:in the script you can double click it to open it then change the bit where it says "wait (300)" so it regens at a different time such as you can change it to "wait (240)".) Also where it says "message (regen BrickModel...) you can change it to the name of what is actually regening like "Regen Dk's Stepmoms Cousin". Alright you got that?

    of     1