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. |