# Simple Player Run on Left Shift Down

Most Commercial games use WASD keys for player movement, and when you create your GC Game, you should not change this. Players are interested in playing your game and not in learning new game controls and this has been shown in extensive research.&#x20;

With this in mind, holding down the Left Shift key is the common way to make your player character go from walk to run. This short tutorial will show you one simple way, not the only way, to acheive this.

You will create two triggers, each with one Action. You can name them anything you want, but I have named them as shown.

![](/files/-M0ERnfBudT_pLmW9WXF)

Set the First Trigger from the **Trigger/Input** menu to **On Key Down**, and select Left Shift.

![](/files/-M0ESB-aY6A8U5Pr6rq0)

Add an Action and add Can Run (selected) from the **Character/Character Properties/Can Run** menu

![](/files/-M0ESRW4ujgSeflBIYEf)

Create a Second  Trigger from the **Trigger/Input** menu to **On Key Up**, and select Left Shift.

![](/files/-M0ESfcV8uNl-oImCRJm)

Create another Action and add Can Run (unselected) from the **Character/Character Properties/Can Run** menu

![](/files/-M0ESsxYeCZ5zxHXIj-q)

You should also unselect the **Can Run check box** for the Player Character, so that Walk is the default.

![](/files/-M0EU9kYV8_0LSbITdkr)

And thats it!

Of course, you can also achieve this with Variables, using the Toggle Bool is the most efficient, but we will cover that next time.

Happy Game Making.


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://profpivec.gitbook.io/documentation-and-tutorials/tutorials/tutorials-for-game-creator/simple-player-run-on-left-shift-down.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
