When I insert a variable into the math.random() code such as "math.random(100)" my frame/image will not show up but when I leave the variable box open () it shows up and the code works. It only works WITHOUT a variable "math.random()".
math.random()
requires two arguments: The start point and end point, so to speak.
local number = math.random(1,100) print(number)
number
's value will be selected randomly between 1 and 100.