hi im very new to scripting and idk how to make a loop forever this is all i have
loop(1) print("Test") end
if anyone could help id appreciate it
In order to use a loop, you must first make a while true do, which will make the script loop forever. Here's a script:
while true do wait(1) print("Test") end