of     1   

ThatLuaScripter
#142211192Thursday, July 31, 2014 8:55 PM GMT

Hey, i'm firezombie100, and i'm wondering if you can help me with this script!game.StarterGui.TextBox.Text = "Hey, I'm Katie. I will be guiding you to the safe zone. First, You'll have to pass by these zombies. Hurry! I'ts spreading! Grab your guns and go!" wait (20) StarterGui.TextBox.Text:Remove() wait (15) StarterGui.TextBox.Text = "More zombies coming up! Watch out there is a lot of them!" wait (20) StarterGui.TextBox.Text:Remove() wait (20) StarterGui.TextBox.Text = "Wow, that was a lot of zombies! Be careful! The red bricks could kill you! Remember, Blue bricks heal you." wait (10) StarterGui.TextBox.Text:Remove() wait (20) StarterGui.TextBox.Text = "Way more zombies coming up! These ones are TUFF remember keyword: TUFF." wait (30) StarterGui.TextBox.Text:Remove() wait (60) StarterGui.TextBox.Text = "Your team might've died by now, But I am still texting you >:3" wait (20) StarterGui.TextBox.Text = "Hi. This game might break a lot so please thumbs up because I'm not really a good scripter :(" -- I want to loop these text messages over and over, But how? please help. -- Startergui.TextBox.Text:Remove() I need this script to shutdown when every character is in the lobby. I need this script to restart when a new game starts. Please help.
EPICJAKEISCOOL
#142211551Thursday, July 31, 2014 8:59 PM GMT

e.o Okai. You new to scripting? Just a hunch. while true do playerz = game.Players:GetPlayers() for i,v in pairs(playerz) do TextBox = v.PlayerGui.TextBox TextBox.Text = "Put Text Here" wait(20) TextBox.Text = "Put Text Here" wait(20) TextBox.Text = "Put Text Here" wait(20) TextBox.Text = "" -- To Remove It Basically end end
EPICJAKEISCOOL
#142211615Thursday, July 31, 2014 9:00 PM GMT

while true do playerz = game.Players:GetPlayers() for i,v in pairs(playerz) do TextBox = v.PlayerGui.TextBox wait() TextBox.Text = "Put Text Here" wait(20) TextBox.Text = "Put Text Here" wait(20) TextBox.Text = "Put Text Here" wait(20) TextBox.Text = "" -- To Remove It Basically end end Oops.
Valtameri
#142211666Thursday, July 31, 2014 9:00 PM GMT

You can't use :Remove() on text, to "remove" the text do this StarterGui.TextBox.Text = ""
EPICJAKEISCOOL
#142211747Thursday, July 31, 2014 9:01 PM GMT

Use intvalues and stuff. repeat until game.Workspace.Value == game.Players.NumPlayers wait(1) end
ThatLuaScripter
#142212404Thursday, July 31, 2014 9:08 PM GMT

Well... Is that the whole script? Cuz' I really need this script.
ThatLuaScripter
#142214058Thursday, July 31, 2014 9:25 PM GMT

That script you gave me didn't work did I misplace it? Because I but it in the textbox.

    of     1