of     1   

TechFreaK
#594542Friday, March 14, 2008 7:53 PM GMT

model = game.Workspace.Space Ship messageText = "Regenerating Space Ship.... sorry for lag!" d = false message = Instance.new("Message") backup = model:clone() n = 1 while true do wait (300) model:remove() for i=1, #messageText do wait(0.025) t = string.sub(messageText, 1,n) message.Parent = game.Workspace message.Text = t n = n+1 end wait (3) n = 1 model = backup:clone() model.Parent = game.Workspace model:makeJoints() message.Parent = nil end What is wrong? That script will regen in 300 seconds (5 minutes) my space ship. but it wont work. Can you help me plz? I'm a bloody-noob in scripting^^'
blobyblobyblob
#594646Friday, March 14, 2008 8:07 PM GMT

What line does the error occur on? --Happy Pi Day--
TechFreaK
#597904Saturday, March 15, 2008 12:45 PM GMT

The Space Ship wont regen..... Did i made a misttake in that script?
sonic87612
#599078Saturday, March 15, 2008 5:59 PM GMT

try using this script: model = game.Workspace.MyModelName --Change MyModelName to your's-- messageText = "Regenerating MyModelName..." -- This will tell you it's time to regen-- message = Instance.new("Message") message.Text = messageText backup = model:clone() while true do wait(300) -- regeneration time for your model to regen-- message.Parent = game.Workspace model:remove() wait(4) -- display regen message for how many seconds-- model = backup:clone() model.Parent = game.Workspace model:makeJoints() message.Parent = nil end
Ethereon
#599863Saturday, March 15, 2008 8:43 PM GMT

i didnt get i thing you just said

    of     1