of     1   

midgood1
#523602Sunday, February 24, 2008 5:44 PM GMT

model = game.Workspace.seller offer messageText = "Regenerating setter offer..." message = Instance.new("Message") message.Text = messageText backup = model:clone() while true do wait(.01) -- regenerate this model every .01 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
Troyg12
#523656Sunday, February 24, 2008 5:59 PM GMT

model = game.Workspace.seller offer messageText = "" message = Instance.new("Message") message.Text = messageText backup = model:clone() while true do wait(.01) -- regenerate this model every .01 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 This will make it so theres no message
jeffcena
#523662Sunday, February 24, 2008 6:01 PM GMT

model = game.Workspace.Oject here no spaces! backup = model:clone() while true do wait(.01) -- regenerate this model every .01 seconds model:remove() model = backup:clone() model.Parent = game.Workspace model:makeJoints() end
midgood1
#538938Saturday, March 01, 2008 12:22 AM GMT

ty jeffcena[cena better]
jeffcena
#541055Saturday, March 01, 2008 8:24 AM GMT

=-D. Hope it worked!

    of     1