1 | local userimputservice = game:GetService( "UserInputService" ) |
2 |
3 | userimputservice.InputBegan:Connect( function (imput) |
4 | if imput.UserImputType = = Enum.UserInputType.Keyboard then |
5 | print ( "Success" ) |
6 | end |
7 | end ) |
It is in a local script inside of StarterGUI Please help