How can a script access a variable thats in another script?
I have a script that plays a song and when it does it has a variable called tempo.
The tempo changes depending on the song. And I am trying to let tempo be accessed in another script but it says unknown global?
Theres the first script, tempo is only in the first block with Mr Blue Sky
01 | local MrBlueSky = 862680756 |
02 | local Believer = 685388224 |
03 | local HowFarItGoes = 1058515832 |
04 | local music = script.Parent |
05 | local musictitle = script.Parent.MusicName.MusicTeller.MusicTitle |
10 | musicpicker = math.random( 1 , 3 ) |
11 | if musicpicker = = 1 then |
12 | musictitle.Text = "ELO - Mr Blue Sky" |
15 | music.PlaybackSpeed = 1 |
21 | if musicpicker = = 2 then |
22 | musictitle.Text = "Imagine Dragons - Believer" |
25 | music.PlaybackSpeed = 1 |
30 | if musicpicker = = 3 then |
31 | musictitle.Text = "Moana - How Far I'll Go" |
34 | music.PlaybackSpeed = 0.673 |
04 | color = math.random( 1 , 5 ) |
06 | brick.BrickColor = BrickColor.new( 196 / 255 , 40 / 255 , 28 / 255 ) |
10 | brick.BrickColor = BrickColor.new( 4 / 255 , 175 / 255 , 236 / 255 ) |
14 | brick.BrickColor = BrickColor.new( 52 / 255 , 142 / 255 , 64 / 255 ) |
18 | brick.BrickColor = BrickColor.new( 123 / 255 , 47 / 255 , 123 / 255 ) |
22 | brick.BrickColor = BrickColor.new( 218 / 255 , 133 / 255 , 65 / 255 ) |
Tempo is blue in this script and there both scripts not local scripts so I figured they could access each other. But they cant and I am a little confused on it.