So I'm trying to get the number of players forum posts with Http Service using a proxy, and it's getting the place visits instead of the forum posts. This is because it's the exact same line of code in inspect element. Is there a way to get around this? All help and criticism is appreciated.
This is just something I was trying but it keeps printing nil. Excuse the bad code:
get = game.HttpService:GetAsync('http://www.rproxy.pw/users/66672488/profile') print (get:match ('<li class="profile-stat"><p class="stat-title">Forum Posts</p><p class="rbx-lead">(%d+)</p>'))
I believe you're only accessing one line, try doing the full thing:
<li class="profile-stat">
<p class="stat-title">Forum Posts</p>
<p class="rbx-lead">%d+</p>
</li>
That should work.