So I came back to scripting and now I realized when you run a local script inside a text button when clicked and make it got invisible it doesn’t do this and don’t give me a filtering enabled link I just want to know the simple script.
local Button = script.Parent
local StarterFrame = script.Parent.Parent
local InstructionsFrame = script.Parent.Parent
Button.MouseButton1Click:Connect(function()
print("Clicked")
StarterFrame.Visible = false
InstructionsFrame.Visible = true
print("Ran")
end)