of     1   

JonathanW123
#168919831Sunday, July 26, 2015 11:18 PM GMT

to have a count of how much youtube subscribers a special person has. So I can put on a GUI. "We will give away a GEAR CODE when we hit 500k subs! 2,305 subscribers to go! I'm just here so I don't get fined
Fabunil
#168922411Sunday, July 26, 2015 11:46 PM GMT

using the httpservice it should be possible
Fabunil
#168928903Monday, July 27, 2015 12:46 AM GMT

Out of boredom I wrote a script that does what you want, there probably is a better way to do it though. local channelname = "TotalHalibut" local s = [["yt.subscription.button.subscriber.count.branded.horizontal yt.uix.tooltip" title=".-"]] local suscribers = string.gsub(game:GetService("HttpService"):GetAsync("https://www.youtube.com/user/"..channelname.."/about", true):match(s):match([["%d.-"]]),"%p","") print(suscribers) Just change the channelname to whatever youtubechannel you want to get the number of suscribers from, also you obviously have to have httpservice enabled.

    of     1