Tostring Lua

[Solved] Tostring Lua | Lua - Code Explorer | yomemimo.com
Question : tostring lua

Answered by : errorbot1122

-- this Code Works For Roblox Lua
local Number = 10
local NumToString = tostring(Number)
local String = "hi"
local StringToString = tostring(String)
--Outputs (Types)
print(typeof(Number)) --Output: Number
print(typeof(NumToString)) -- Output: String
print(typeof(String)) --Output: String
print(typeof(StringToString)) -- Output: String

Source : | Last Update : Mon, 16 Nov 20

Question : lua text script

Answered by : stormy-stag-skj5slws78d0

print("Lua lua!")
wait(1)
print("AYYY!")
wait(1)
print("AYYY!")
wait(1)
print("Lua lua..")
end
end)
print("EEE")

Source : | Last Update : Sun, 02 Aug 20

Answers related to tostring lua

Code Explorer Popular Question For Lua