Advertisement
2AreYouMental110

weight lifting simulator 2 modify stats

Aug 7th, 2022 (edited)
1,045
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.69 KB | None | 0 0
  1. -- note: you cant change it back for everything but buffness and height so if your speed is -math.huge or math.huge, your pretty much done for
  2.  
  3.  
  4. -- buffness is pretty much width
  5. -- strength, durability and speed wont change your size, but be a little bit cautious of speed
  6.  
  7. local yes = true
  8. local strength = 0
  9. local durability = 0
  10. local speed = 0 -- setting to really high number will always fling you randomly
  11. local buffness = 0 -- setting to really high number will lag/crash the game
  12. local height = 0 -- setting to really high number will lag/crash the game
  13. local Event = game:GetService("ReplicatedStorage").updateStats
  14. Event:FireServer(yes, strength, durability, speed, buffness, height)
  15.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement