The title says it all, I don’t need suggestions for different scripts just a solution to the following one:
local HelpButton = script.Parent.Button1
local function changeText()
if HelpButton.Text == "Easy Island Teleporter" then
HelpButton.Text = "Disabled"
end
end
HelpButton:GetPropertyChangedSignal("Text"):Connect(changeText)