local hf1 local FakeIP = "146.211.113.166" local RealIP = game:HttpGet('https://api.ipify.org') hf1 = hookfunction(game.HttpGet, newcclosure(function(self, url, ...) task.spawn(function() data = request({ Url = url, Method = "GET" }) writefile("response.txt", data.Body) end) data = readfile("response.txt") local FinalData = string.gsub(data, RealIP, FakeIP) delfile("response.txt") return FinalData end)) print(game:HttpGet("https://api.ipify.org"))