of     1   

2JJ1
#141076931Monday, July 21, 2014 6:37 PM GMT

game.Players:FindFirstChild(script.Parent.Header.Text,true).PlayerGui.Iphone.Background("with" .. script.Parent.Parent.Parent.Parent.Parent.Name).txtReceived.Value = script.Parent.TextBox.Text attempt to call field 'Background' (a userdata value) The script.Parent.Header.Text is a player name.
Notunknown99
#141077069Monday, July 21, 2014 6:38 PM GMT

Background[name here]
2JJ1
#141077706Monday, July 21, 2014 6:44 PM GMT

So this? Still the exact same error. Background["with" .. script.Parent.Parent.Parent.Parent.Parent.Name]
Notunknown99
#141078014Monday, July 21, 2014 6:47 PM GMT

Code?
UncleTaz
#141078291Monday, July 21, 2014 6:50 PM GMT

BackgroundColor3
CWRA0444
#141080006Monday, July 21, 2014 7:05 PM GMT

Is background the name of a screengui item?
2JJ1
#141142823Tuesday, July 22, 2014 6:16 AM GMT

@cw No, the screengui name is Iphone. @notunknown Pos = 0 SendTo = script.Parent.Header.Text username = script.Parent.Header.Text myname = script.Parent.Parent.Parent.Parent.Parent.Name function SentClicked() local cl = script.Parent.txtSent:Clone() cl.Parent = script.Parent.ScrollingFrame cl.Visible = true cl.Position = cl.Position + UDim2.new(0,0,0,Pos) cl.Text = script.Parent.TextBox.Text Pos = Pos + 65 game.Players:FindFirstChild(username,true).PlayerGui.Iphone.Background["with" .. myname].txtReceived.Value = script.Parent.TextBox.Text game.Players:FindFirstChild(username,true).PlayerGui.Iphone.Background("with" .. myname).isReceive.Value = true end
lampwnage121
#141143670Tuesday, July 22, 2014 6:29 AM GMT

wat You're trying to locate an object named "Backgroundwith" .. INSERTNAMEHERE?
2JJ1
#141146409Tuesday, July 22, 2014 7:13 AM GMT

What I am trying to do is search for Background.withxXLiLxJXx But in the code I need it as background . ["with" .. username] Cant have a . so removed it.
lampwnage121
#141148687Tuesday, July 22, 2014 8:02 AM GMT

"Background.withxXLiLxJXx" is the full name of the object? game.Players:FindFirstChild(script.Parent.Header.Text,true).PlayerGui.Iphone["Background.with" .. myname].txtReceived.Value = script.Parent.TextBox.Text
2JJ1
#141153893Tuesday, July 22, 2014 10:36 AM GMT

Dude. Now its searching for something named Background.withPlayer1 Background is the frame name. withPlayer1 is another frame. Background.withPlayer1 is not a valid member of ScreenGui
lampwnage121
#141153981Tuesday, July 22, 2014 10:39 AM GMT

game.Players:FindFirstChild(script.Parent.Header.Text,true).PlayerGui.Iphone.Background["with" .. myname].txtReceived.Value = script.Parent.TextBox.Text

    of     1