of     1   

B4B
#261316Wednesday, November 28, 2007 11:45 PM GMT

i need a weapon regen 4 the rockets & bombs u no the 1's u get in the "tools"
jirachifan6
#262193Thursday, November 29, 2007 6:28 PM GMT

-- Talky Regen script by Seth1054 :3 enjoy and follow my instructions ok... or else it won't work O_o model = game.Workspace.Cart -- change Model to the name of your model you want to regnerate is and it can't have spaces in the name backup = model:clone() function onChatted(msg, recipient, speaker) local source = string.lower(speaker.Name) msg = string.lower(msg) if (msg == "reset") then -- chang reset to what ever you want to say to regenerate a model model:remove() model = backup:clone() model.Parent = game.Workspace model:makeJoints() end end function onPlayerEntered(newPlayer) newPlayer.Chatted:connect(function(msg, recipient) onChatted(msg, recipient, newPlayer) end) end game.Players.ChildAdded:connect(onPlayerEntered) -- when you are done fixing everything go to Cut and paste into Workspace first put all of your weps in a group then use this!

    of     1