Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

How do I make TextBox work on FE Enabled?

Asked by 5 years ago
Edited 5 years ago

Well the script is:

script.Parent.Changed:Connect(function()
if script.Parent.Text ~= "Full" then 
script.Parent.Text == Ful
end
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

2 answers

Log in to vote
0
Answered by 5 years ago

It should also be in a local script

Ad
Log in to vote
2
Answered by 5 years ago

This has nothing to do with FilteringEnabled. Line 3 of your code should be:

script.Parent.Text = "Full"

You forgot to make it into a string.

Hope that helps

Answer this question