script.Parent.Value = "Voltison - Augusta ME"
That's literally the entire script. Not even kidding. And it doesn't work. The script's parent is the value in question. The value is a StringValue. ?????
FE is enabled if that changes anything.
is script inside of string value?
script should be parent in StringValue
if script.Parent.Value == "ANY text here" then -- this text should be in string value script.Parent.Value = "Ur text here" -- changes from text "ANY text here" to "Ur text here" end
I have 2 things that could be wrong: 1. script is disabled 2. you might be targeting the wrong thing. for example:
script.Parent.Text = 'your string'
it is also to note the parent is the textbutton, not the stringvalue. the string value is pointless in this case.