So “starter.Enabled = false” – That is the script that doesn’t work
“local starter = game:GetService(“StarterGui”):WaitForChild(“ScreenGui”)” – That is the issue
I am sure this is an easy fix but I’m just dumb.
–Script
local starter = game:GetService(“StarterGui”):WaitForChild(“ScreenGui”) – Issue with this
local button = script.Parent – Works
button.MouseButton1Click:Connect(function() – Works
if button == button then – Works
print(“yes”) – works
starter.Enabled = false – Doesn’t work
end
end)