I am making a on touch triggered area which changes the lightning ambient and background ambiance. So the touch script is a server script which is supposed to enable that local script which changes lightning ambient and background ambiance.
script.Parent.localscript.Disabled=false
I have tried doing it like this. But it seems to not work as i expected and not function at all.
script.Parent.localscript.Disabled = false
I think it may be something to do with "localscript" Is the localscript called "LocalScript" or "localscript"?
Have you tried:
script.Parent.LocalScript.Disabled = false