i seriously have to work to click that button !
script.Parent.MouseButton1Up:connect(function() script.Parent.Parent.Parent.Parent.Part1.SurfaceGui.TextBox.Text = script.Parent.Text script.Parent.Parent.Parent.BrickColor = BrickColor.new("Bright green") if script.Parent.Text == "Good" then script.Parent.Parent.Parent.Parent.Number.Value = script.Parent.Parent.Parent.Parent.Number.Value + 1 elseif script.Parent.Text == "Bad" then script.Parent.Parent.Parent.Parent.Number.Value = script.Parent.Parent.Parent.Parent.Number.Value - 1 end end)
I'm not sure but if you change the event it might solve your problem. However I'm not 100% sure it will help you out with the "Clicking" difficulties.
script.Parent.MouseButton1Click:connect(function()-- I change it to MouseButton1Click which might help. script.Parent.Parent.Parent.Parent.Part1.SurfaceGui.TextBox.Text = script.Parent.Text script.Parent.Parent.Parent.BrickColor = BrickColor.new("Bright green") if script.Parent.Text == "Good" then script.Parent.Parent.Parent.Parent.Number.Value = script.Parent.Parent.Parent.Parent.Number.Value + 1 elseif script.Parent.Text == "Bad" then script.Parent.Parent.Parent.Parent.Number.Value = script.Parent.Parent.Parent.Parent.Number.Value - 1 end end)