Im not that skilled at lua, but i found out about HTTP service today and tried it, for some reason it returns false despite the website saying true, any help? NOTE: the setting for HTTP Request is on
local url = "https://raw.githubusercontent.com/zizzle8383/zizfun/master/Test" while 1+1 == 2 do --could be replaced with while true wait(1) local party = game:GetService("HttpService"):GetAsync(url, true) if party == "Party = True" then script.Parent.Transparency = 0 print "true" else script.Parent.Transparency = 1 print "false" print (party) end end
EDIT: Despite Printing False, when it prints (party) it prints: Party = True