This works!
Thanks so much SmallG!!!
Edit: For anyone that sees this down the road. TextColor so you can have color text! Here is how I went about this as a test
spr_created=0
test_number=99999999 -- just for testing
if spr_created == 0 then
spr = CreateSprite(LoadImage("scriptbank\\images\\testingimg\\test.png")) -- will have to set your own path, this was for me
SetSpritePosition(spr,200,200)
spr_created = 1
end
PasteSpritePosition(spr,0,0)
TextColor(4,6,3,"WhatAGoodDayToTest" ..test_number,153,204,102) -- Last three numbers here are color code, check link below for colors
http://www.colorschemer.com/online.html