of     1   

Distortional
#144436344Sunday, August 24, 2014 10:17 PM GMT

Basically trying to change a TextLabel's text to a TeamName based on TeamColor in the Owner value. Owner is a BrickColorValue Output: 18:15:39.591 - Players.Player1.PlayerGui.ScreenGui.Capture Stats.Title.Scr:3: attempt to concatenate field 'Owner' (a userdata value) 18:15:39.591 - Stack Begin 18:15:39.591 - Script 'Players.Player1.PlayerGui.ScreenGui.Capture Stats.Title.Scr', Line 3 18:15:39.591 - Stack End 18:15:39.592 - Disconnected event because of exception Script: local value = game.Workspace.Terminal.Owner value.Changed:connect(function(c) color = ""..game.Workspace.Terminal.Owner for i,v in pairs (game.Teams:GetChildren()) do if v.TeamColor == BrickColor.new(color) then TeamName = v.Name end end end) I need a girl whose name doesn't end in .PNG
Kannivalismos
#144436488Sunday, August 24, 2014 10:19 PM GMT

color = ""..game.Workspace.Terminal.Owner.Value
Distortional
#144441524Sunday, August 24, 2014 11:25 PM GMT

19:25:10.949 - Players.Player1.PlayerGui.ScreenGui.Capture Stats.Title.Scr:3: attempt to concatenate field 'Value' (a userdata value) 19:25:10.950 - Stack Begin 19:25:10.950 - Script 'Players.Player1.PlayerGui.ScreenGui.Capture Stats.Title.Scr', Line 3 19:25:10.950 - Stack End 19:25:10.951 - Disconnected event because of exception I need a girl whose name doesn't end in .PNG
Polyflow
#144441956Sunday, August 24, 2014 11:32 PM GMT

local value = game.Workspace.Terminal.Owner value.Changed:connect(function() local color = value.Value for i,v in pairs (game.Teams:GetChildren()) do if v.TeamColor == color then TeamName = v.Name end end end)
Distortional
#144442127Sunday, August 24, 2014 11:34 PM GMT

Didn't work ^ No error though. :/ I need a girl whose name doesn't end in .PNG
Polyflow
#144442418Sunday, August 24, 2014 11:38 PM GMT

I think you meant; v.Name = tostring(color) ?
Distortional
#144442489Sunday, August 24, 2014 11:39 PM GMT

What? I need a girl whose name doesn't end in .PNG

    of     1