Advertisement
vtrvsted

memory spoof

Dec 5th, 2022
940
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.49 KB | None | 0 0
  1. local PerformanceStats = game:GetService("CoreGui"):WaitForChild("RobloxGui"):WaitForChild("PerformanceStats");
  2. local MemLabel;
  3. for I, Child in next, PerformanceStats:GetChildren() do
  4.     if Child.StatsMiniTextPanelClass.TitleLabel.Text == "Mem" then
  5.         MemLabel = Child.StatsMiniTextPanelClass.ValueLabel;
  6.         break;
  7.     end;
  8. end;
  9.  
  10. local text = "999999999999999 MB";
  11. MemLabel:GetPropertyChangedSignal("Text"):Connect(function()
  12.     MemLabel.Text = text;
  13. end);
  14. MemLabel.Text = text;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement