I was trying to make a server to all clients event, but it didn’t work. I copied the one from developer.roblox.com to see what was different and I’m trying to figure out why it works only when the LocalScript is in StarterCharacterScripts, but not for example ReplicatedStorage. Where can I put those script and why?
This is because Roblox doesn’t allow LocalScripts to be ran in certain services, for example, if you have a LocalScript inside of ReplicatedStorage, it will not run no matter what, even if it isn’t disabled
LocalScripts are usually placed inside of StarterPlayerScripts/StarterCharacterScripts or inside of Guis because that is where you are going to be making all these wonderful changes to the client
1 Like