of     1   

fruitygeneration
#143972627Tuesday, August 19, 2014 2:23 AM GMT

Is there a fix for this? This is the code I'm trying to fix: Cookies = 0 script.Parent.MouseButton1Down:connect(function() game.Soundscape.Click:Play() Cookies = Cookies + 1 game.Players.LocalPlayer.PlayerGui.CookieNotificator.TextLabel.Text = Cookies end)
Miro034
#143973928Tuesday, August 19, 2014 2:43 AM GMT

Tell me the problem of this. Btw I recommend using ""..Cookies.."" instead of Cookies alone.
Origin_Sea
#143974062Tuesday, August 19, 2014 2:45 AM GMT

Cookies = 0 script.Parent.MouseButton1Down:connect(function() game.Soundscape.Click:Play() Cookies = Cookies + 1 game.Players.LocalPlayer.PlayerGui.CookieNotificator.TextLabel.Text = tostring(Cookies) end) --I added tostring() since the value of Cookies is a number value, and not a string. tostring does the trick :3
fruitygeneration
#143975414Tuesday, August 19, 2014 3:06 AM GMT

Thanks a lot! It really helped :D

    of     1