Parallaxox

Properties

Jun 5th, 2020 (edited)
1,558
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.57 KB | None | 0 0
  1. --https://www.youtube.com/watch?v=EAmpYEgegu8
  2. local Properties = {"BodyDepthScale","BodyWidthScale","BodyHeightScale","BodyProportionScale","BodyTypeScale","HeadScale"}
  3. local debounce = false
  4. script.Parent.Touched:Connect(function(hit)
  5. if debounce == false then
  6. debounce == true
  7. local char = game.Players:GetPlayerFromCharacter(hit.Parent)
  8. local humanoid = hit.Parent:FindFirstChild("Humanoid")
  9. if humanoid then
  10. for _, property in pairs(Properties) do
  11. humanoid[property].Value = 5 -- can change 5 to something bigger or smaller
  12. wait(5)
  13. debounce = false
  14. end
  15. end
  16. end
  17. end)
Add Comment
Please, Sign In to add comment