^ Above I have linked 3 photos. - The Output - Script #1 that errored - Script #2 that errored
I don't understand what I'm doing wrong can someone please help me understand?
Both of the scripts are LocalScripts - and both of them attempt to access ServerScriptService.
LocalScripts are executed on a client, therefor they are unable to access ServerScriptService, and hence the object inside you are attempting to reference.
In studio, the 'play' button gives LocalScripts the same permissions Scripts have, as your studio is acting as the server AND the client at the same time.
Solution - remove the object you are attempting to reference from ServerScriptService. (it is not advised to make the two LocalScripts into Scripts -- it is not good practice)