|
| 28 Dec 2015 01:39 AM |
x = math.random(0.6,1.2) sound.Pitch = x
I know this doesn't work. Just gets 1 every time... Halp? |
|
|
| Report Abuse |
|
|
indeimaus
|
  |
| Joined: 01 Sep 2014 |
| Total Posts: 4285 |
|
|
| 28 Dec 2015 01:42 AM |
| it might need something to base it off of |
|
|
| Report Abuse |
|
|
|
| 28 Dec 2015 01:50 AM |
https://www.youtube.com/watch?v=Xrne2-gOoqU tried printing x. Just says 1. |
|
|
| Report Abuse |
|
|
|
| 28 Dec 2015 01:51 AM |
math.random(6,12)/10
random is whole numbers only |
|
|
| Report Abuse |
|
|
|
| 28 Dec 2015 02:40 AM |
pitches = {1,6,4,2,.1,.6,.19} sound.Pitch = pitches[math.random(1,#pitches)] |
|
|
| Report Abuse |
|
|