of     1   

Daniel11112222
#44597440Saturday, March 26, 2011 3:32 AM GMT

DoorPathWay = script.Parent MinutesOpen = 1 MinutesClosed = 1 while true do DoorPathWay.Transparency = 0 DoorPathWay.CanCollide = true wait(MinutesClosed * 60) DoorPathWay.Transparency = 1 DoorPathWay.CanCollide = false wait(MinutesOpen * 60) end Can someone help me modify this script so that when the door closes it says on the screen "The noobs have stopped their attack! Finish off the remaining noobs." and when its 30 seconds away from opening it says "30 seconds until the noobs invade!" and at the 10,9,8,7,6,5,4,3,2, and 1 marks it says "10 seconds until the noobs invade" "9 seconds until the noobs invade" etc... Please help me!!!
Xsitsu
#44597521Saturday, March 26, 2011 3:33 AM GMT

Yeah, I can.
Xsitsu
#44598207Saturday, March 26, 2011 3:46 AM GMT

DoorPathWay = script.Parent Minutes = 1 hint = Instance.new("Hint") hint.Parent = game.Workspace hint.Text = "" x = 10 while true do DoorPathWay.Transparency = 0 DoorPathWay.CanCollide = true wait(Minutes * 5) hint.Text = "" -- delete this line if you don't want the finish off noobs message to go away after 5 seconds. wait(Minutes * 25) hint.Text = "The noobs will invade in 30 seconds!" wait(Minutes * 10) hint.Text = "The noobs will invade in 20 seconds!" wait(Minutes * 10) for i = 1, 10 do hint.Text = "The noobs will invade in "..x.." seconds!" wait(Minuets) x = x - 1 end x = 10 hint.Text = "The noobs are here, to battle stations!!!" DoorPathWay.Transparency = 1 DoorPathWay.CanCollide = false wait(Minutes * 60) hint.Text = "The noobs have stopped their attack! Finish off the remaining noobs!" end Let me know if anything is wrong, I didn't test it but I don't tink anything is.
goldfriend10
#44598495Saturday, March 26, 2011 3:51 AM GMT

@Xsit wrong: DoorPathWay = script.Parent Minutes = 1 hint = Instance.new("Hint") hint.Parent = game.Workspace hint.Text = "" x = 10 while true do DoorPathWay.Transparency = 0 DoorPathWay.CanCollide = true wait(Minutes * 5) hint.Text = "" -- delete this line if you don't want the finish off noobs message to go away after 5 seconds. wait(Minutes * 25) hint.Text = "The noobs will invade in 30 seconds!" wait(Minutes * 10) hint.Text = "The noobs will invade in 20 seconds!" wait(Minutes * 10) for i = 1, 10 do hint.Text = "The noobs will invade in "..x.." seconds!" wait(Minutes) x = x - 1 end x = 10 hint.Text = "The noobs are here, to battle stations!!!" DoorPathWay.Transparency = 1 DoorPathWay.CanCollide = false wait(Minutes * 60) hint.Text = "The noobs have stopped their attack! Finish off the remaining noobs!" end
goldfriend10
#44598544Saturday, March 26, 2011 3:52 AM GMT

ya spelled 'Minutes' wrong at one line :3
Xsitsu
#44598601Saturday, March 26, 2011 3:53 AM GMT

LOL your right rofl, good thing you fixed that.
DeadPanTutor
#44599254Saturday, March 26, 2011 4:04 AM GMT

Hey...Wasn't this the guy looking for that door a couple days ago?
Daniel11112222
#44603470Saturday, March 26, 2011 5:49 AM GMT

Yepppp :P
Daniel11112222
#44648703Saturday, March 26, 2011 11:44 PM GMT

How can i change that script so that it shows those words on the whole screen (the screen goes a bit greyish and the words are in the middle of the screen)
Daniel11112222
#44683331Sunday, March 27, 2011 3:40 PM GMT

bump
BunnyBoy26
#44683882Sunday, March 27, 2011 3:51 PM GMT

the line that says: hint = Instance.new("Hint") Change that to: hint = Instance.new("Message")
Daniel11112222
#44708183Sunday, March 27, 2011 10:29 PM GMT

How do i make it so the message just stays there for about 3 seconds??? (except 1-10)
Daniel11112222
#44740163Monday, March 28, 2011 5:58 PM GMT

bump
Daniel11112222
#44910094Friday, April 01, 2011 2:58 AM GMT

Helppp
Sharp1331
#44910296Friday, April 01, 2011 3:02 AM GMT

wait(3) and then remove it
surviverbunny
#44912313Friday, April 01, 2011 3:57 AM GMT

wow no offence daniel but you really cant script can you?...

    of     1