I want a script that changes the value of an IntValue every 3 - 5 seconds (with a number between 0 - 10) but i'm having trouble finding anything on how i would do it, Any help would be much appreciated!
while wait(math.random(3,5)) do local value = math.random(0,10) print(value) end --I havnt tested this out in studio yet, but this should work.