I am currently trying to use math.huge for a project so a gui will display infinitely. Whats the problem? My module uses task.wait(self.VisibleTime - 1 + self.TweenLength1) to wait until the gui needs to be removed, but when I turn self.VisibleTime into math.huge, nothing displays at all. Someone please help as I have been confused with this issue for a long time.
Thanks in advance, and of course, best regards, @maddjames28
You should use an escape condition or a function call to make the UI go away instead of using an arbitrary wait time; math.huge() is intractable, so the task schedular can’t “wait for a huge time.” Mind showing the script? The phrase “gui will display infinitely” is confusing since you could just not disable the UI at all if it’s supposed to be on-screen forever.