When Server Scripts crash

If a Server Script crashes while executing does it crash for everyone or just the player?

Here is an example Server Script:

function SampleFunction(player)
	
	print("This is a sample")
	
end

SampleFunction(player)

Will the game continue to function?

Will the script continue to work for other players?

1 Like

There’s only 1 copy of the server script on the server

Client scripts or Local scripts are the ones that are unique and copied to each player

If the server script stops working then it stops working for everyone

1 Like