Skip to content

Instantly share code, notes, and snippets.

View CoolGuyBraydan's full-sized avatar
💭
I'm new to github, I joined so I could share my python games with other people.

Braydan CoolGuyBraydan

💭
I'm new to github, I joined so I could share my python games with other people.
View GitHub Profile
@CoolGuyBraydan
CoolGuyBraydan / Join the Undead.py
Last active April 15, 2024 18:47
Most recent version of the zombie game
import turtle
import time
import random
import math
tick=0
print('"Join the Undead" made by Braydan Smith')
print()
print("WARNING: There are flashing lights/colors in this game.")
@CoolGuyBraydan
CoolGuyBraydan / 1-Player Pong.py
Last active September 14, 2022 02:13
Pong 1-Player and 2-Player Bundle (python)
print("Press 'g' to make the ball move.")
import turtle
import time
time.sleep(1)
import random
import math
delay = 0.01
score = 0
highscore = 0
@CoolGuyBraydan
CoolGuyBraydan / Pong Bot.py
Created September 13, 2022 23:57
1-Player Pong against bot
print("Press 'g' to make the ball move.")
import turtle
import time
time.sleep(1)
import random
import math
delay = 0.01
score = 0
highscore = 0
@CoolGuyBraydan
CoolGuyBraydan / 2-Player Pong.py
Last active September 14, 2022 02:13
a version of pong i made with python
print("Press 'g' to make the ball move.")
import turtle
import time
time.sleep(3)
import random
import math
delay = 0.01
p1_score = 0
p2_score = 0
@CoolGuyBraydan
CoolGuyBraydan / Snake Battle.py
Last active April 9, 2024 20:58
this game i made is like a cross between slither.io and snake, and its 2 players, hope you enjoy.
import turtle
import time
import random
blue_segments=[]
red_segments=[]
blgame="stop"
rdgame="stop"
blue_wait="nothing"
red_wait="nothing"
@CoolGuyBraydan
CoolGuyBraydan / Zombie Survival.py
Last active April 9, 2024 20:30
Zombie Survival Python (Hope you enjoy)
import turtle
import time
import random
import math
print('"Zombie Survival (3.2)" made by Braydan Smith')
print()
print("Would you like a tutorial? Enter 'yes' or 'no' (and DO NOTHING ELSE!).")
awnser=input(":")
awnser=awnser.lower()