of     1   

Nicko88
#521206Saturday, February 23, 2008 9:46 PM GMT

Can someone make me a regen script that finds all the tools/weapons in the game and regens them at the same time??? Thanks, -Nicko
mattcena
#521308Saturday, February 23, 2008 10:21 PM GMT

yeah same with me i'm having same problem
Shadowstormer
#521326Saturday, February 23, 2008 10:25 PM GMT

Ok this is easy Group ALL of your tools you want and name the model tools I filled the script below here to work with the tools model = game.Workspace.tools --Replace the 'MyModelName' with the name of your model. backup = model:clone() while true do wait(60) --How long till regeneration in seconds. model:remove() wait(1.9) -- wait a small bit before cloning model = backup:clone() wait(2) -- wait a final 2 seconds. Note that in total, the wait time is still 4 seconds model.Parent = game.Workspace model:makeJoints() end Put this in a script and your done
Shadowstormer
#521335Saturday, February 23, 2008 10:26 PM GMT

Oh and i forgot to mention I took out the message part so its a surprise to the people when the weps regen, It still works just dont expect a message in it.

    of     1