x = 5 -- a simple variable player = { name = "texturawasd", -- a string? height = 152, -- integer (cm) alive = true -- boolean? } --print(player.name) -- that works print(player.name, "is", player.height, "tall")