Having problems with making a flag color GUI. The GUI has 5 Letters that will change color once a player touches the flag in game. The Letter will switch to there team color from the flag in workspace. Could someone help find my error?
Team = workspace.FlagStand1.Part.BrickColor Part1 = workspace.FlagStand1.Part LetterA = script.Parent.Imagecolor3 while true do local user = game.Players:GetPlayerFromCharacter(hit.Part1) Part1 = user.Teamcolor if user ~= nil then LetterA.Imagecolor3 = Part1.Brickcolor end
end
What is your output? Also you need to put the code Inside all the ~'s for the code block