Power up help how

Hi guys! I want to know how to make a the character have a power when he gets a power up thing. Kinda like super mario when he gets the mushroom and can shoot fireballs.

3 Likes

Yes, this possible, a little later i add example

2 Likes

It would also depend on the type of power up you’d like.

An example if you wanted to make super jump:

When: Space key is pressed down
And: Variable - Jump Variable - Equals 0

Do: Player Jump 50%

When: “player” is touching object “mushroom”

Do: Mushroom - set hidden - yes
Variable - Jump Variable - Set Value - 1

When: Space key is pressed down
And: Variable - Jump Variable - Equals 1

Do: Player - Jump - 100%

Just a little example :grin:

4 Likes