I wanted to make part change its transparency between 0 and 0.8 but for some reason it only selects 0
Here is my script
while wait(0.1) do local randomize = math.random(0, 0.8) print(randomize) end
local randomize = math.random(0, 8) / 10 -- or local randomize = Random.new():NextNumber(0, 0.8)