of     1   

lnplodedalt
#140038637Saturday, July 12, 2014 12:13 AM GMT

script.Parent.MouseButton1Down:connect(function() script.Parent.num.Value = script.Parent.num.Value + 1 script.Parent.Text = "You have clicked " . . script.Parent.num.Value . . " time(s)" end) Trying to make it so that when you click on the GUI, the intvalue increases by 1, and then it changes the GUI's text from "You have not clicked yet" to whatever the intvalue is. Also, the error is on line 3.
RainbowStarImpact
#140042643Saturday, July 12, 2014 12:54 AM GMT

You have spaces in the middle of the dots you can't have that they need to be stuck together script.Parent.MouseButton1Down:connect(function() script.Parent.num.Value = script.Parent.num.Value + 1 script.Parent.Text = "You have clicked " .. script.Parent.num.Value .. " time(s)" end)

    of     1