Well the script is:
1 | script.Parent.Changed:Connect( function () |
2 | if script.Parent.Text ~ = "Full" then |
3 | script.Parent.Text = = Ful |
4 | end |
5 | end ) |
Well this is a simple script I made.. I need help because it doesn't work on FE Enabled games and I want to get a solution quick
This has nothing to do with FilteringEnabled. Line 3 of your code should be:
1 | script.Parent.Text = "Full" |
You forgot to make it into a string.
Hope that helps