Cannot call RemoteFunction in Test Server/Player

21:01:06.295 - Forbidden
21:01:06.295 - Script ‘Players.Player1.PlayerGui.DynamicGui.Guis.PrivateServers.Lo’, Line 56 - global MyServerButton
21:01:06.295 - Script ‘Players.Player1.PlayerGui.DynamicGui.Guis.PrivateServers.Lo’, Line 110
21:01:06.296 - Stack End

CurrentPlayerData, CurrentFarmData = GetPersonalData:InvokeServer("FARM")

It works online.

I believe here’s what’s going on:

  1. In your server implementation, you issue an HTTP request
  2. The http request fails with “Forbidden” error (503) and the error propagates to the client

[quote] I believe here’s what’s going on:

  1. In your server implementation, you issue an HTTP request
  2. The http request fails with “Forbidden” error (503) and the error propagates to the client [/quote]

That would make sense! Thanks!