This happens every time I run a Test Server in Studio. Does anybody know why Roblox hates me? Am I SOL?
I literally can’t test my game without going into online mode every damn time. [/quote]
Id 5 means that the port is already in use (from my testing) - make sure nothing else is using the port 53640:
netstat -na | findstr 53640
(netstat essentially shows ports/ips/whatever, you pipe its output into “findstr” which accepts arguments determining what to look for, in this case the phrase “53640”)