Typos & Minor Edits Mega-thread [Closed]

Syntax mistake in the VRService code example.

The line in question:

print(typ.Name + " changed. Updated Frame: " + value)

Using ‘+’ to concatenate strings is not valid Lua. It works in other languages such as C++ though. The line should instead use Lua’s concatenation, like so:

print(typ.Name.." changed. Updated Frame: "..value)

Also, please add

math.round()

to the math page.