My game scene takes 5 seconds to load what i can do to make it faster or should i put loading??
first you should find out what’s taking the time. run the profiler while starting the game. if ram goes up, you need to either reduce whatever is filing it up (textures, sound) or, when you come from a different scene preload the scene.
if it’s CPU, reduce the execution time of the code.