Add func.rscript.lua

This commit is contained in:
2025-11-19 08:37:36 -05:00
commit d5f1696c33

6
func.rscript.lua Normal file
View File

@@ -0,0 +1,6 @@
function show(string, repeatvalue)
while i < repeatvalue do
print(string)
i = i + 1
end
end