Advertisement
PpRoStOo

Weight lifting Simulator 3 Infinite Strength

Jan 6th, 2022
6,228
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.74 KB | None | 0 0
  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,9); --// 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;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement