Does it matter that a server script is inside a local script?

I’ve been scripting for a while and I don’t know if this really matters.
Is it safe or does it matter that I put a server script in a local script.
It’s located inside of StarterCharacterScripts.
The server script only recieves the fired event, and nothing else is passed.
So I’m not concerened with that being exploited. Only curious about the idea that
the server script inside a local script is unsafe.

Here’s how it looks:

Directory

It’s not unsafe; server bytecode is not sent to the client. The only thing exploiters can see is the ServerScript instance

2 Likes

Thanks just wanted another input!