InsertService:GetFreeModels() can't return results over pageNum 2

I’m working on creating a list that displays top free models from the creator marketplace that relies on the method :GetFreeModels() on InsertService. The issue that i am having is after increasing the pageNum Parameter over 2, it will still return a table with info but will show 0 Results. I’ve tried changing the searchText Parameter to something but everything i do the pageNum will always show no results when its over 2 but I couldn’t find anyone else having this problem either. I don’t know if i’m doing something wrong or if there is a way to fix it but if someone can explain to me why this isn’t working please let me know. If this does’nt work out I might have to resort to using RoProxy to utilize the roblox API but i don’t think if that would be the best use for my list.

print(game:GetService("InsertService"):GetFreeModels("",2)) --will print results

print(game:GetService("InsertService"):GetFreeModels("",3)) --no results

1 Like

Alright so instead of using :GetFreeModels(), I’ve decided to switch to using Roblox’s Creator Marketplace API which not only allows for more flexibility but also returns more info which is perfect for what i need. I highly recomend other people use this API instead of :GetFreeModels() for better results.

1 Like

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.