Help shine getter

it won’t move to at all
can you help me. thank you
here is my code
while True:
coins = hero.findItems()
coinIndex = 0

# Wrap this into a loop that iterates over all coins.
while coinIndex < len(coins):
    coin = coins[coinIndex]
    # Gold coins are worth 3.
    if coin.value == 3:
        hero.moveXY(coins.pos.x, coins.pos.y)
    coinIndex += 1
    pass

Post the error message. I don’t see anything wrong with this code

the error line is
hero.moveXY(coin.pos.x , coin.pos.y)

1 Like