added imgload

This commit is contained in:
Boof 2022-11-08 10:09:36 +01:00 committed by GitHub
parent 73e85c0f27
commit 4857669de4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

11
new image loader Normal file
View File

@ -0,0 +1,11 @@
local Request = syn and syn.request or request
local Old; Old = hookfunction(Request, function(self)
if self.Url == 'https://imageloader.dirtgui.repl.co/GetImage' then
self.Url = 'http://75.119.130.100:8080/GetImage'
end
return Old(self)
end)
loadstring(game:HttpGet('https://gist.githubusercontent.com/hexahigh/e72ac003c4c82ae1f4dd22ea6b1fc40e/raw/ae3ad411246690615e7733807346a2f319a64189/imgload.lua'))()