1 | game.workspace.part.transparency = 0.5 |
Wont work. Please help.
It won't work because "Workspace" needs to be capitalized, and same for "Transparency" and "Part"
game.Workspace.Part.Transparency = 0.5
2 main errors:
It's Transparency
not transparency
Are you sure it's called part
and not Part
?
The correct script(s) is below:
1 | --OPTION 1 |
2 | workspace.Part.Transparency = 0.5 |
3 |
4 | --OPTION 2 |
5 | game.Workspace.Part.Transparency = 0.5 |
6 |
7 | --OPTION 3 |
8 | a = game.Workspace.Part |
9 | a.Transparency = 0.5 |