Problem With ApplyDescription

So I want to make a dummy appearing as a random person’s userid in the server, so I made a table which will feature everyone’s userid in it, and used math.random to pick out a random userid and finally ApplyDescription to finish the job. But the problem is the avatar on the dummy won’t fully load up, it will only feature the colour of the clothing then that’s it, no accessories or clothing. Can anyone help me with this annoying problem? It will be greatly appreciated.

The Code:

  1. Could we see the userIds table?
  2. You should use pcalls to wrap the ApplyDescription function [ in case it fails].
  3. Try instead:
local randomUser = userIds[math.random(1,#userIds)]
1 Like

i just tried your line of code and it appears to work, thanks!
I’m just thinking how stupid I am not thinking do this earlier lol