Please use code-tags rather than attaching files we have to download.
Also, when you get an error, post the error in full and let others know the line/column numbers you’re given too. Right now we’ve got an attached code file and a description of the error only. Don’t curate the bits you think are important; post the full error please.
So you’re trying to use Time.deltaTime. Time is a Unity class but you’ve then created a float called Time (which I don’t think you are even using) and are expecting the compiler to know which one you mean; it doesn’t.
You need to remove or change the name of your “Time” float field.