why does this not work, its in a scriptin a textbutton.
function clicked(player) script.Parent.Parent.ReporterName.Value = "Report1" script.Parent.Parent.ReportName.Value = "Report2" end script.Parent.MouseButton1Down:connect(clicked)
What you are doing is right except you aren't adding Wait()
function clicked() script.Parent.Parent.ReporterName.Value = "Report1" wait(1) script.Parent.Parent.ReportName.Value = "Report2" wait(1) end script.Parent.MouseButton1Down:connect(clicked)