would be a big help I've been trying to find something on the internet
script:
local Value = 1 print(Value)
do print()
-- and put the value in between the brackets. open your output and in game it will print it!
another way you can do this script:
local Value = 1 print("Value is now "..Value)
when you do "..
" you can put different values together to make a word for example
local Value1 = 1 local Value2 = 2 print(Value2..Value1)--notice the ".." so it will say 12
All you have to do is to get a number value is
local x = game.your location print(x)