|
| 13 Aug 2014 07:34 AM |
Could you change a variable that is in a different script from another script?
EXAMPLE:
Script 1
x = 1
----------
Script 2
wait(1)
x = 3
Would this work? Please respond. Thank you. |
|
|
| Report Abuse |
|
|
|
| 13 Aug 2014 07:40 AM |
| I jut realized that you're declaring a variable in script 2 :c |
|
|
| Report Abuse |
|
|
|
| 13 Aug 2014 07:40 AM |
| Well, than how would I go about Accessing a variable from a different script? |
|
|
| Report Abuse |
|
|
IcyFires
|
  |
| Joined: 29 Jun 2013 |
| Total Posts: 5046 |
|
|
| 13 Aug 2014 08:11 AM |
script 1
_G.x = 1
script 2 wait(1) _G.x = 3
http://www.roblox.com/--item?id=171600495 |
|
|
| Report Abuse |
|
|
| |
|