How do I make the player 2 keys work? I'm trying to make s and f the movement for p2 but it won't work. It's just a little game movement thing. The code is here:
function _init()
position = 63
p = 63
end
function _update()
if btn(➡️) then
position+=1
end
if btn(⬅️) then
position-=1
end
if btn() then
p-=1
end
if btn() then
p+=1
end
end
function _draw()
cls()
spr(1,position,63)
player1score = 0
player2score = 0
player1name = "wooper"
player2name = "quagsire"
print(player1name)
print(player1score)
print(player2name)
print(player2score)
spr(2,p,73)
end
How do I switch the roles of the background gray blocks with all the floor pieces? I am quite stuck and tried myself, it didn't work
This thread is for ideas for my game.
The main character is a lil bird that changes color but I don't know what color he should turn with 1 dash and then again with 2 dashes.
This game is a Celeste type mod.

I don't know if he should have a scarf that changes color or if his body should so I need ideas.
Hardeste
Hardeste is a mod I made for Celeste Classic.
Features:
Madeline sprites are a bit different
Harder map
Strawbs are (hopefully.) all able to collect.
Post feedback in the comments and have fun!
PicoPong
Have fun with an A.I and play PicoPong! PicoPong is ping pong against an A.I., have fun and leave feedback!
Hello, I have a few things about coding. First how do I make a jump and/or map and animations? I am very new to coding and want to make a little game with some abilities.