Originally posted by FRlNZ
lol bro OpenMenu() which is located mostly in main.gsc
self.menu.background FadeOverTime(0.30);
self.menu.background.alpha = 0.55;
That You Will Delete off OpenMenu()
No In CloseMenu()
self.menu.background FadeOverTime(0.3);
self.menu.background.alpha = 0;
Delete That
almost done ....
Now in destroyMenu()
Delete player.menu.background destroy();
Now Finally in StoreShaders()
Delete
self.menu.background = self drawShader("white", 235, -100, 200, 1000, (0, 0, 0), 0, 0);
And by now you should have no backgroung Just Text
But You Can Just Make Your Background invisable by Going To
OpenMenu()
And makeing
self.menu.background.alpha = 0.55; to 0 example
self.menu.background.alpha = 0;
thats another way to do it. so you dont hv to delete anything.