local button = script.Parent
local WelcomeText = game.StarterGui.IFE.Screen.WelcomeText
button.MouseButton1Click:Connect(function()
print("Clicked!")
WelcomeText.Visible = false
end)
This LocalScript is supposed to change the visible property of WelcomeText, however, it’s not working. Help?