Hoopz Script | DEVICE SPOOF – XBOX GAMEPAD SPOOF [PREVENT PEOPLE FROM ACCUSING YOU OF CHEATING]

Created by ! slixx#2043

Features:

  • DEVICE SPOOF
    • This will spoof your device so it will look like you are playing on Xbox which means people won’t think you’ll be able to use synapse or any other scripting software.
local old
local DeviceToSpoof = "Gamepad" -- Devices are: Mobile, Gamepad (Xbox), Keyboard

old = hookmetamethod(game,"__namecall",function(self,...)
   local args = {...}
   local method = getnamecallmethod()
   if method == "FireServer" then
       if tostring(self) == "deviceEvent" then
           args[1] = DeviceToSpoof
           return self.FireServer(self,unpack(args))
       end
   end
   return old(self,...)
end)