i'm getting this error, error CS1585: Member modifier 'static' must precede the member type and name please can I get some help this is the line of code, privite static GameMaster instance;
You misspelled "private". It's basically saying you can't declare a type (called "privite") before you set it as static. Just change it to "private" and that should fix it