Alright, so I have this problem where I join on my phone and somehow it says I am mobile.
``lua
if UserInputService.TouchEnabled and not UserInputService.KeyboardEnabled and not UserInputService.MouseEnabled then
print("Mobile device")
NameTag.Text = NameTag.Text.." 📱"
elseif not UserInputService.TouchEnabled and UserInputService.KeyboardEnabled and UserInputService.MouseEnabled then
print("Computer device")
NameTag.Text = NameTag.Text.." 💻"
else
NameTag.Text = NameTag.Text.." 🎮"
You are on your phone and your code says you are on your phone, I don’t see the issue.
Also, I would not recommend getting players’ devices like that because you have to think that people can connect keyboards to their phones and that there are touch screen computers.