Here's the script
1 | script.Parent.MouseButton 1 Click:connect( function () |
2 | if not script.Parent.Text = = "On" then |
3 | script.Parent.Text = "On" |
4 | elseif not script.Parent.Text = = "Off" then |
5 | script.Parent.Text = "Off" |
6 | end |
7 | end ) |
help please
see if that works
1 | script.Parent.Text = "Off" |
2 | script.Parent.MouseButton 1 Click:Connect( function () |
3 | if script.Parent.Text = = "On" then |
4 | script.Parent.Text = "Off" |
5 | elseif script.Parent.Text = = "Off" then |
6 | script.Parent.Text = "On" |
7 | end |
8 | end ) |
Just change the variable for it. Normally people don't write not infront of the if statement but instead by the equal sign..
1 | script.Parent.Parent.TextButton.MouseButton 1 Click:Connect( function () |
2 | if script.Parent.Text ~ = "On" then |
3 | script.Parent.Text = "On" |
4 | elseif not script.Parent.Text ~ = "Off" then |
5 | script.Parent.Text = "Off" |
6 | end |
7 | end ) |