Is there any way to reload a script, as in making it run again as if the game was starting?
You should make it a function. That way you can call it again, again and again.
1 | function startGame() |
2 | --Enter the game code here |
3 | end |
4 | --Under here is how to call it. |
5 | startGame() |
When you want to start the game, call the function, and all code inside will run. - Toby