Hello so I’m on the last device to support which is console for my game and I’m trying to differentiate between console and pc but having a bit of trouble because even when I have the gamepad emulation controller menu open, it still says false?
local function isConsole()
local gis = game:GetService("GuiService")
if gis:IsTenFootInterface() then
return true
end
return false
end