How do i make a Y-Button image/decal stay visible when the user is playing the game on xbox
In order to check if the user is on XBOX, you should use UserInputService in a LocalScript.
1 | if game:GetService( 'UserInputService' ).GamepadEnabled then |
2 | print ( 'This user is on XBOX!' ) |
3 | end |