can I use css counter code example
Example 1: How do I make a redirect in PHP?
header("Location: http://example.com/redirect_page.php");
die(); //Force the script to quit, or you would raise an error...
Example 2: How can you print in lua/roblox
-- You can print string
print("Hello, World!")
-- You can print math
print(5 + 5)
-- You can print variables
local i = 5
print(i + 2)
-- You can print number
print(5)