DEVICE SPOOFER – MAKE THE GAME THINK THAT YOU’RE PLAYING ON MOBILE

Created by Bills The God Of Destruction#1013

Features:

  • DEVICE SPOOFER

SCRIPT:

local UserInputService = game:GetService("UserInputService")
local GuiService = game:GetService("GuiService")

local namecall, index;

namecall = hookmetamethod(game, "__namecall", function(...)
    local args = {...};
    local self = args[1];
    local method = getnamecallmethod();

    if self == UserInputService or self == GuiService then
        if method == "GetPlatform" then
            return Enum.Platform.Android;
        elseif method == "IsTenFootInterface" then
            return false;
        end
    end
    return namecall(...);
end)

index = hookmetamethod(game, "__index", function(tbl, idx)
    if tostring(getcallingscript()) ~= "ControlModule" and tbl == UserInputService then
        if idx == "TouchEnabled" then
            return true;
        elseif idx == "MouseEnabled" then
            return false;
        elseif idx == "KeyboardEnabled" then
            return false;
        end
    end
    return index(tbl, idx);
end);

⚠️ Warning: Do not download any extensions or anything other than .txt/.lua file, because script will download only in .txt/.lua format or It will redirect you to a pastebin link.

📋 Notice: If you find any of the scripts patched or not working, please report it to Forever4D through Discord. The script will be removed or marked as patched!