of     1   

Thewiirules
#533079Thursday, February 28, 2008 3:13 AM GMT

Now.... im not a TOTAL noob to scripting... I no the basics and can do a few basic scripts but nothing too complicated... i have 2 scripts i'll need help with... the first one is supposed to regenerate a model called "Snowballs" every 85 seconds. I thought a script like this would work: Snowballs = game.Workspace while true do wait(85) Snowballs:remove() wait(0.01) Snowballs:clone() end could u plz tell me if it should work and if it shouldnt plz tell me why! (it will help me learn ^_^) and another script thats supposed to make a door become invisible and untouchable every so often (this one is kinda hard to explain so ill just give u the script) *I thought this would work but apparently it doesn't plz do the same with this one as the one above* SnowWall = game.Workspace.Mountain messagetext = "blah blah blah" while true do wait(60) SnowWall.CanCollide = false SnowWall.Transparency = 1 message = Instance.new("Message") message.Text = messagetext wait(5) message:remove() wait(25) SnoWall.Cancollide = true SnowWall.Transparency = 0 end Plz help ASAP! ^_^ THX! ☼Thewiirules☼
Thewiirules
#533314Thursday, February 28, 2008 5:35 AM GMT

cmon! i no som1 out there must no... plz even the slightest help would b nice.... plz respond soon! «∞Thewiirules∞»
21SG
#533420Thursday, February 28, 2008 8:23 AM GMT

Snowballs = game.Workspace.Snowballs --can't regen whole workspace...-- Model = Snowballs:clone() while true do wait(85) Snowballs:remove() wait(0.01) Snowballs = Model:clone() end ------------------------------------------------------ SnowWall = game.Workspace.Mountain --Is the mountain a model, then you need to locate the bricks in it or something else-- messagetext = "blah blah blah" while true do wait(60) SnowWall.CanCollide = false SnowWall.Transparency = 1 message = Instance.new("Message") message.Text = messagetext message.Parent = game.Workspace wait(5) message:remove() wait(25) SnowWall.Cancollide = true SnowWall.Transparency = 0 end IF SnowWall is a model, use this script: messagetext = "blah blah blah" while true do wait(60) message = Instance.new("Message") message.Text = messagetext message.Parent = game.Workspace wait(5) message:remove() c = game.Workspace.Mountain:GetChildren() --this is the model-- for i = 1, #c do --works if you don't have model into the model with bricks in-- c[i].CanCollide = false c[i].Transparency = 1 end wait(30) --i stop the "for-statement" for i while to donät make it wait 30/something else in each brick-- for i = 1, #c do c[i].CanCollide = false c[i].Transparency = 1 end
Thewiirules
#534434Thursday, February 28, 2008 9:34 PM GMT

WOW! thx alot! ^_^
Thewiirules
#534435Thursday, February 28, 2008 9:34 PM GMT

ima give u special credit in my desc for my place =P

    of     1