#Explorer command not working
7 messages · Page 1 of 1 (latest)
A possible and quite simple fix for those able to work on it or those that have their own MainModule of Kohls Admin Infinite.
Go into the KAI Module > D > Extras > Explorer > Explorer > LocalScript
Find this line in the script
game:GetService('ContentProvider'):PreloadAsync(iconMap)
change it to
game:GetService('ContentProvider'):PreloadAsync({iconMap})
Why?
PreloadAsync expects an array not a string, the error you will get is most likely is "Unable to cast string to Array" to fix this, simply wrap iconMap into a single element array.
https://create.roblox.com/docs/reference/engine/classes/ContentProvider#PreloadAsync
( not amazingly explained, I apologize. )
That is if legacy/older versions are still being supported.
I may be wrong, but I think legacy may still receive bug fixes (?) but not content updates.
Yeah I responded to this user separately, legacy is officially unsupported but Kohl will occasionally ship updates, primarily bug fixes