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.
function startGame() --Enter the game code here end --Under here is how to call it. startGame()
When you want to start the game, call the function, and all code inside will run. - Toby