Advertisement
EXTREMEXPLOIT

Psy or Die.

Nov 10th, 2018
316
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.65 KB | None | 0 0
  1. import turtle
  2. import random
  3.  
  4. Scr = turtle.Screen()
  5. Pointer = turtle.Turtle()
  6. Scr.title = ("Psy or Die.")
  7. Scrx=600
  8. Scry=400
  9. Scr.setup(Scrx,Scry)
  10.  
  11. def PsySquare():
  12.     Psy=0
  13.     PsyC=0
  14.     Pointer.speed(100)
  15.     Scr.bgcolor("black")
  16.     for j in range (0,80):
  17.         if PsyC%2==0:
  18.             Scr.bgcolor("black")
  19.             Pointer.pencolor("white")
  20.             PsyC+=1
  21.         elif PsyC%2!=0:
  22.             Scr.bgcolor("white")
  23.             Pointer.pencolor("red")
  24.             PsyC+=1
  25.         for i in range (4):
  26.             Psy+=5
  27.             Pointer.forward(Psy)
  28.             Pointer.left(90)
  29.            
  30. PsySquare()
  31.  
  32. #EXTREMEXPLOIT
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement