of     1   

Simfireblaze
#139182715Friday, July 04, 2014 4:35 AM GMT

I'm trying to make a surface GUI code door but I don't know how to make the buttons JUST ADD a number instead of just resetting the whole text box. Could someone lend me hand?
wish_z
#139183471Friday, July 04, 2014 4:44 AM GMT

local CURRENTCODE = "" buttonpress event local CURRENTCODE = CURRENTCODE.."#" just use concatenation
Simfireblaze
#139183643Friday, July 04, 2014 4:46 AM GMT

And that will just add a number?
FauxHawke
#139183877Friday, July 04, 2014 4:49 AM GMT

...
wish_z
#139184195Friday, July 04, 2014 4:53 AM GMT

the dots "combine" stringss like a = "roblox" b = "banana" print(a..b) >"roblox banana"

    of     1