NetworkPeer
Mostrar obsoleto
The NetworkPeer object is the most basic class of the network objects.
Resumen
Métodos
Sets the maximum outgoing bandwidth that Roblox can use.
Propiedades
Métodos
SetOutgoingKBPSLimit
void
Sets the maximum outgoing bandwidth that Roblox can use.
Parámetros
Devuelve
void
Muestras de código
The following code, when ran from the command bar or a plugin, would limit bandwidth to 1KBPS.
NetworkPeer:SetOutgoingKBPSLimit
local NetworkClient = game:GetService("NetworkClient")
NetworkClient:SetOutgoingKBPSLimit(1)