Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR LUA

how to make a number adding in roblox studio

-- LocalScript inside of the TextButton

local label = -- path to your TextLabel inside of your SurfaceGui
local number = 0

script.Parent.MouseButton1Click:Connect(function()
    number += 1
    label.Text = number
end)
Source by devforum.roblox.com #
 
PREVIOUS NEXT
Tagged: #number #adding #roblox #studio
ADD COMMENT
Topic
Name
5+9 =