usr.name = input("What is your name?") as text
usr.race = input("What is your race?") in list ("Lizard","Human")
if("Lizard")
usr.icon='Lizard.dmi'
usr.icon_state="walk"
usr.Move(locate(1,1,1))
if("Human")
usr.icon='base.dmi'
usr.icon_state="walk"
usr.Move(locate(1,1,1))
I fixed this before but i forgot to save and i forget what exactly i did. When i run it the window to pick my race pops up but when i pick Lizard it makes my base Human. Please help!