Not sure if this helps, I don't know of any way to check what device is being used, but there is a way to check if there's a touch screen connected. Maybe we can put something together that checks if there's a touch screen but no mouse and keyboard then it may be a phone or tablet. I didn't test this script.
1 | local Input = Game:GetService( 'UserInputService' ) |
2 | if Input.TouchEnabled and not Input.MouseEnabled and not Input.KeyboardEnabled then |
3 | game.Lighting.gear:Clone().Parent = Player.Backpack |
4 | game.Lighting.gear:Clone().Parent = Player.StarterGear |
Maybe there is another way around, but this is what I can come up with.