My button script (which what is supposed to happen, when you press it when its red it turns camo green, when you press it when it's camo it turns red) if script.Parent.Parent.BrickColor == ("Really Red") then
script.Parent.MouseClick:Connect(function ()
script.Parent.Parent.BrickColor = BrickColor.new("Camo")
end)
elseif script.Parent.Parent.BrickColor == ("Camo") then
script.Parent.MouseClick:Connect(function ()
script.Parent.Parent.BrickColor = BrickColor.new("Really Red")
end)
end