Advertisement
zza

ok

zza
Aug 18th, 2017
200
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. print("Hello world!")
  2.  
  3. tool = script.Parent
  4.  
  5. function heavy()
  6. tool.Parent.Humanoid.WalkSpeed = 10
  7. end
  8.  
  9. function light()
  10. tool.Parent.Parent.Character.Humanoid.WalkSpeed = 16
  11. end
  12.  
  13. tool.Equipped:connect(heavy)
  14. tool.Unequipped:connect(light)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement