This commit is contained in:
watrabi
2025-09-18 17:55:52 -04:00
commit 977f1ff4b8
15030 changed files with 17324420 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
local WaitSeconds = 60
print(string.format("Waiting %d seconds for player to settle.", WaitSeconds))
wait(WaitSeconds)
local Player = Game.Players.LocalPlayer
local PlayerID = string.gsub(Player.Name, "Player", "")
print("PlayerID", PlayerID)
if PlayerID % 2 then
print(string.format("Waiting for %d seconds before adding memory pressure.\n", WaitSeconds))
wait(WaitSeconds)
settings().Network.ExtraMemoryUsed = 16000 -- MBytes
print("Memory pressure added.")
else
print("No memory pressure to be added.")
end