I need it so that when the player clicks the text button, the text of it goes from "High", to "Low" and this script isn't working. There is a blue line under the word "Low". I am new to scripting and still learning so try to make it understandable for a newbie :D
1 | script.Parent.MouseButton 1 Down:connect( function () |
2 | script.Parent.Text = Low |
3 | end ) |
The reason the text isn't changing is because you are giving it a variable to change to, you want to change it to a string
1 | script.Parent.MouseButton 1 Down:connect( function () |
2 | script.Parent.Text = "Low" |
3 | end ) |
Strings are made using " " or ' '
You can create a variable with a string value then use it to change the text of the button
1 | local text = "Low" |
2 | script.Parent.MouseButton 1 Down:connect( function () |
3 | script.Parent.Text = text |
4 | end ) |