of     1   

ARisings
#139429941Sunday, July 06, 2014 4:44 PM GMT

I need help with scripting the ending part for this script. script.Parent.Touched:connect(function(part) h = game.Workspace.TestingPartScript.Parent:findFirstChild("Humanoid") humanoid = part.Parent:findFirstChild("Humanoid") if humanoid then wait (1) game.StarterGui.ScreenGui.TextLabel.Visible = true wait(1) game.StarterGui.ScreenGui.TextLabel.Text = "I am behind you!" game.StarterGui.ScreenGui.Test.Sound:play() wait(1) game.StarterGui.TextLabel.Visible = false end end)
Frostglacier
#139430184Sunday, July 06, 2014 4:47 PM GMT

The second line seems completely unnecessary in this context. Also, you should be modifying the LocalPlayer's StarterGui and not the game's StarterGui. Otherwise, you will see no change until respawn.
101airsoft
#139430228Sunday, July 06, 2014 4:48 PM GMT

I am sorry, but this script doesn't even make sense.
ARisings
#139430272Sunday, July 06, 2014 4:48 PM GMT

You know I am Banlio's scripter.
Frostglacier
#139430381Sunday, July 06, 2014 4:50 PM GMT

script.Parent.Touched:connect(function(part) humanoid = part.Parent:findFirstChild("Humanoid") if humanoid then part.Parent = character player = game.Players:GetPlayerFromCharacter(character) wait (1) player.StarterGui.ScreenGui.TextLabel.Visible = true wait(1) player.StarterGui.ScreenGui.TextLabel.Text = "I am behind you!" player.StarterGui.ScreenGui.Test.Sound:play() wait(1) player.StarterGui.TextLabel.Visible = false end end) Something like that?
ARisings
#139430394Sunday, July 06, 2014 4:50 PM GMT

How i don't depend on a 2012 person to script. Also frost it doesn't matter what the h thing does it just stands for something..
101airsoft
#139430521Sunday, July 06, 2014 4:51 PM GMT

You made your variables hard for us to understand since we can not see exactly what you are trying to do. Give us a better picture.
ARisings
#139430605Sunday, July 06, 2014 4:53 PM GMT

iceglacier that is killing me instead.
Frostglacier
#139430859Sunday, July 06, 2014 4:56 PM GMT

1. Learn to read names 2. In no way would that script kill you. It's the same exact script that you gave me except for the fact that I fixed some mistakes. If you want us to really fix it, then give us some more context or what should be going on.
101airsoft
#139430971Sunday, July 06, 2014 4:57 PM GMT

Ice is right though, no one will see the changes until they die.
ARisings
#139431133Sunday, July 06, 2014 4:59 PM GMT

Wait actually the touch intrest did that I don't even know how I even got the text interest. Does it need a ending?
101airsoft
#139431359Sunday, July 06, 2014 5:02 PM GMT

script.Parent.Touched:connect(function(part) humanoid = part.Parent:findFirstChild("Humanoid") if humanoid then part.Parent = character player = game.Players:GetPlayerFromCharacter(character) wait (1) player.PlayerGui.ScreenGui.TextLabel.Visible = true wait(1) player.PlayerGui.ScreenGui.TextLabel.Text = "I am behind you!" player.PlayerGui.ScreenGui.Test.Sound:play() wait(1) player.PlayerGui.TextLabel.Visible = false end end)
ARisings
#139431393Sunday, July 06, 2014 5:02 PM GMT

The StarerGui is fine. But we have a error.
101airsoft
#139431439Sunday, July 06, 2014 5:03 PM GMT

Copy and paste the error on this thread.
ARisings
#139431632Sunday, July 06, 2014 5:05 PM GMT

well I think the Gui is not turning Visible.
101airsoft
#139464189Sunday, July 06, 2014 10:33 PM GMT

Try what I put.

    of     1