I'm new to httpservice, I have loadstring and httpenabled enabled. Inside of this pastebin, it's supposed to return a message but it doesn't. Can anyone help? The script is:
loadstring(game:GetService("HttpService"):GetASync('http://pastebin.com/raw/fHb1QprF', true))()
That code should work. You probably need to make sure:
you have HTTP requests enabled
LoadstringEnabled is enabled
you're not trying to execute that in a LocalScript
I fixed it by doing ~~~~~~~~~~~~~~~~~ function pastebin(i) return game:GetService("HttpService"):GetAsync("https://pastebin.com/raw/"..i) end loadstring(pastebin("fHb1QprF"))() ~~~~~~~~~~~~~~~~~