Liczby lua
num = 50 -- All numbers are doubles.
Hello There
num = 50 -- All numbers are doubles.
--example of numbers. varibles
local number1 = 6
local number2 = 23
--you can add numbers too
local total_number = number1 + number2
print(total_number) --result... 29
--if you wanna see it in roblox studio then type /console in chat then type 29 in search
-- you wil see 29... thats what the print function printed of the varible total_number :)