Couldn’t find anything helpful about that, so here I am
print(isGreen) --prints false, and its boolean
newlabel.TextColor = Color3.new(0, 1, 0)
if isGreen == false then
newlabel.TextColor = Color3.new(1, 0, 0)
print("aaa") --doesnt print anything
end
print("working") -- doesn't print anything
I’ve tried removing the if statement, and it worked perfectly, and even if isGreen = true, doesn’t work
Any idea why ?