Hello everyone ! I have a problem while trying to remove a display.newText variable in my game.
When I try to remove it I get an error telling me the var I want to remove is a nil value (but of course it is not nil).
Code looks like this:
local letter = display.newText(“content”, 0, 0, “Minecraftia”, 14.5)
[…]
letter:removeSelf() <- this point is the critical one
Thanks everyone, I hope someone will help me.