I tried
1 | function Load() |
2 | CurrentBase = game.Workspace.Baseplate |
3 | CurrentBase.BrickColor = BrickColor.Random() |
4 | end |
5 |
6 | for i, v in pairs ( getfenv (Load)) do |
7 | print (i, "=" ,v) |
8 | end |
You can just return the variables in the function
Example:
1 | function Load() |
2 | CurrentBase = workspace.Baseplate |
3 | CurrentBase.BrickColor = Brickcolor.Random() |
4 | return CurrentBase, CurrentBase.BrickColor |
5 | end |
6 |
7 | print (Load()) |