# Quick queastion about random number

**URL:** https://forum.kirupa.com/t/quick-queastion-about-random-number/187769
**Category:** Uncategorized
**Created:** [May 2, 2006, 5:47am UTC](https://forum.kirupa.com/t/quick-queastion-about-random-number/187769 "2006-05-02T05:47:42Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![Daimz](https://yyz1.discourse-cdn.com/flex011/user_avatar/forum.kirupa.com/daimz/32/2383_2.png) [@Daimz](https://forum.kirupa.com/u/Daimz)
#### Post date: [May 2, 2006, 5:47am UTC](https://forum.kirupa.com/t/quick-queastion-about-random-number/187769/1 "2006-05-02T05:47:42Z")

</div>

I am just making a random number generator and I have got the random numbers going using this script.

```auto

onClipEvent (load) {
 go = true;
}
onClipEvent (enterFrame) {
 if (go) {
  display = Math.round(Math.random()*9);
 }
}

```

The only problem is that the numbers are way to fast I’d like them to be 1/2 if not 3/4 the speed that they are. how can I do that?
