Server ping so high?
can anyone suggest any fix into this
i’ve looked into the developer console and i’ve found some anomaly, i’ve also found an unknown script but i cant seem to locate it
Server ping so high?
can anyone suggest any fix into this
i’ve looked into the developer console and i’ve found some anomaly, i’ve also found an unknown script but i cant seem to locate it
If the issue is that there’s a script you cannot find then it is likely there may be a virus in your game. Check if any scripts are inserting unexpected models (viruses typically do so using require()
).
When pressing play, you can run this in the server command bar to see if there are any unknown scripts in your game:
for _, v in pairs(game:GetDescendants()) do
if v:IsA("Script") or v:IsA("LocalScript") or v:IsA("ModuleScript") then
print("Found script:", v:GetFullName())
end
end
This will list all scripts currently in the game, as well as their location too:
Found script: StarterPlayer.StarterPlayerScripts.PlayerModule.ControlModule
Hope this helps
I’ve checked all of the scripts and nothing came up, i think there’s a person DDOSing my server, I tried all solutions and only one server only had an average of 2K ping while the other servers only had 50-150 ping at most
I’ve also created an Anti-ddos script which basically just checks the remote events being fired and if they abuse it which means they will be kick but it still didnt work so i really dont know what’s the problem