This may be about scripting or not,
But I put guns in my game, and I have a KO/WO leaderboard. When I kill another player with a gun, they die on my screen, but not on theirs, and it doesn't give me +1 KO. They also don't respawn when they die on my screen. When I reset, it gives me my +1 WO. Anybody know why?
Your code is most likely in a LocalScript
. With FilteringEnabled
set to true
, all changes on the Client will NOT replicate to the Server.
If you want these changes to occur for all players, make sure your code is in Server Scripts.
You can also use RemoteEvents as highlighted here: https://developer.roblox.com/api-reference/class/RemoteEvent in order to communicate between the server and the client if you'd like to keep your localscript basis.