#why doesnt the baseplate color continuosly change
1 messages · Page 1 of 1 (latest)
send bigger screen shot plz
oh
you arent changing the color
you are just making baseplate.color = red green blue
and red green blue isnt changing
red = 10
blue = 10
green = 10
youre just setting it equal to 10,10,10 and not changing it
red green and blue = math.random(0, 255)
unless u need to re use the rgb variables just plug math.random(0, 255) into the baseplate.Color line xd
they wont change if you define them outside of the jackpot loop
which happens once.
local x=math.random(0,255) print(x) print(x) will print the same value, it doesn't magically run math.random a second time