TEXT 212
Weight lifting simulator 3 script By Zaura on 24th February 2023 08:45:09 AM
  1. getgenv().Enabled = true; --// Can be changed to false
  2.  
  3. --// Variables
  4. local getupvalue = debug.getupvalue or getupvalue;
  5. if (not getupvalue) then return; end;
  6. local Service = setmetatable({},{__index = function(t,k) return game:GetService(k) end});
  7. local Weight = Service.Players.LocalPlayer.Backpack:WaitForChild('Weight');
  8. local Add_Strength = Service.ReplicatedStorage:WaitForChild('addStrength');
  9. local Value = math.pow(10,8); --// Dont change
  10. local Key;
  11. local C_Function;
  12. --// Function grab
  13. for _,Conn in next,getconnections(Weight.Activated) do
  14.     C_Function = Conn.Function;
  15. end;
  16. --// Main Loop
  17. while getgenv().Enabled do task.wait(.01);
  18.     Key = getupvalue(C_Function,5);
  19.     Add_Strength:FireServer(Key,Weight.Handle,Value);
  20. end;

Texbin is for source code and general debugging text.

Login or Register to edit, delete and keep track of your pastes and more.

Raw Paste

Login or Register to edit or fork this paste. It's free.