The game features interesting missions, the ending of which depends on your choice. In the game, you will meet characters from Sanford who want to betray the main character.

To learn about controls, click the "Help" button. There will be updates in the future, and regarding NPCs, I can say they will be in the next update.
I would like to reveal more characters and make more missions, but the engine is buggy, sometimes models disappear, so if I suddenly reveal characters, it will be in a separate GTA
GTA:
www.gamemaker3d.com/player?pid=057857766952
I also want to help those who have problems with the character (T pose), it was a big problem, but I solved it easily. Your code doesn't include an initial animation start; it's only enabled within the loop. However, the spd variable is reset every frame. Because of this, the engine sometimes doesn't have time to assign the first animation, and the character remains in the T-pose. This is visible in the character code.
The easiest fix is to add one block to the beginning of the character code and all animations will play.
<Set var="PlayAnimation" value="Breathe"/>
<Var var="spd" value="0"/>
We leave the SPD as it is and do not change it.