So I made a script to detect if a player is on mobile or not. Does this break the terms of Roblox? It only prints to the client so I guess not but would it if it showed to the server?
local players = game:GetService("Players")
local plr = players.LocalPlayer
local plrGui = plr:WaitForChild('PlayerGui')
if plrGui:FindFirstChild('TouchGui') then
print('mobile play')
else
print('you are a desktop player')
end
Again it only shows to the client, but if it showed to the server would it?
I agree since it shows them on mobile if they use the microsoft version, but it is just made to check if they are on any kind of mobile device, not phone or tablet.