Why no loadingscreen?

Can you put a print(workspace:GetDescendants()) right before the loop?

i’m noob at scripting where to add what?

Right before the for i = 1, #assets do thing

Edit: Also show the console when you run the game.

for i = 1, #assets do

Before this script, do game:GetDescendants()

right before “i = 1, #assets” i add workspace:GetDescendants()?

Whoops, my bad. put print(game:GetDescendants()) I want to see what you are looping through.

can i add u to my game for 1 sec lol

image
this ok?

Can you show us the code you wrote now?

no you want to put print(game:getDescendants()) like

print(game:getDescendants())
for i = 1, #assets do

Hmm add a space after this…

(Charactersss)

image

Now run the game and tell us the output given in the console.

Yes, like that. Then show us what comes out in the console.

It’s written wrong lol
It should be this:

game:GetDescendants()

Was actually about to comment on this line right before you sent this.
You’re waiting for something that doesn’t exist, which means the rest of the script isn’t running.

Oh, this means LoadingScreen doesn’t exist…

You are running this code before LoadingScreen is actually loaded I guess…

1 Like

You have to write it with a capital S since its called LoadingScreen

1 Like

bruh- move the loading screen instance into the script. Can’t believe I missed that.

1 Like