Can you put a print(workspace:GetDescendants()) right before the loop?
iâm noob at scripting where to add what?
for i = 1, #assets do
Before this script, do game: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
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)
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âŚ
You have to write it with a capital S since its called LoadingScreen
bruh- move the loading screen instance into the script. Canât believe I missed that.