How do I do
backgroundTransparency = 1
it will force me to put () like
backgroundTransparency = 1 ()
it won't work right? so i putted the 1 inside it
backgroundTransparency = (1)
and it still won't work.
(I have learned basics already and now learning the LocalScript, so is this an update or the ways of scripting between normal script and localscript isn't the same?)
aight here look https://media.discordapp.net/attachments/893852610015154230/922645474253623326/Screenshot_773.png?width=1440&height=613
You have to reference the object you are changing the 'backgroundtransparency' properties. You can put the localscript inside the GUI object like a frame which you wanna change the 'backgroundtransparency' properties and do
local frame = script.Parent frame.BackgroundTransparency = 1
Spell it exactly the same. Not backgroundTranspancy but BackgroundTransparency.