Hello. Can someone please validate whether or not my code below is typed correctly?
Please consider…and thanks.
**local function goodName (event)
local sheetData = { width =104, height=104, numFrames=6 }
local imageSheet = graphics.newImageSheet ( “sprites/mySprite.png”, sheetData )
local sequenceData = { { name=“glow”, start=1, count=6, time=1150 }}
local myObject = display.newSprite ( imageSheet, sequenceData )
myObject.x = display.contentCenterX -7**
myObject**.y = display.contentCenterY +10**
myObject**.alpha=.95**
myObject** :scale (1,1)**
myObject** :setSequence (“glow”)
**** myObject **** :play()
end**
I used this a few days ago without issue, but now my project runs with no errors and the sprite sheet is not their…Or maybe it is but I can’t see it on the screen. I’m positive I didn’t change anything else in the code, so I am just not sure why it is not working. Im pretty sure the code above is typed right, but it isnt working so Im here now with you! 
Any help is appreciated.
Thank you again, all.