I've Tried shapesize and turtlesize neither work, is there an alternative?
everything else works I just need a rectangle shape
    class Sword(turtle.Turtle):
        def __init__(self,plyr,color):
            turtle.Turtle.__init__(self)
            self.player = plyr
            self.speed(0)
            self.up()
            self.fd(25)
            self.goto(self.player.xcor(),self.player.ycor())
            self.shape("square")
            self.color(color)
        def collision(self):
            global zombies
            for x in range(len(zombies)-1,-1,-1):
                if self.distance(zombies[x]) <= 20:
            zombies[x].ht()
            del zombies[x]
            return True;
    s = Sword(p1,"blue")
 
     
     
    