Now it's time to get the player object moving under your control. To do this, you need to apply keyboard input to the player GameObject, which will act as forces to move the sphere in the scene. You can do this using the Input System Package and a script attached the player GameObject. Unity Packages are used to add specific enhanced functionality to your Unity Project. To install the Input System Package, in the top menu go to Window > Package Manager. You can use the Package Manager window to install, remove or update packages for your project. Select All packages to reveal all of the currently available Unity Packages. Find Input System, then select Install to add the package to your project. You might see a dialog window, asking you to enable the native platform backends for the Unity Input System. If you see this, select Yes to fully enable the new system. And then save your changes to the scene. That's it, you've now got the package that you need to make keyboard inputs. If you are creating this game for Windows, there is one more thing you need to do, to use the Input System Package for your game. In the top menu, go to File, Build Settings. You can also use the hotkeys Shift + Control or Command + B, this will open up the Build Settings window. In the PC, Max and Linux Standalone settings change the Architecture to x86_64. Close the Build Settings window. You'll find out more about this when you finished making your game. Now you're ready to continue. In the next video, you'll start to use it.