So I have a little code with a intValue which is called Status. So I want that when the intermission function is called, change the status.
Status.Value = "Intermission" print(Status.Value)
But when I check the console, it prints 0 instead of intermission. Why???
Hey there! This is something pretty simple to resolve. The reason it is outputting a zero is because Status is not a StringValue
. All you need to do is replace what I presume is an IntValue
with the StringValue
and then it should output "Intermission"