Advertisement
Ven0ced

Untitled

Jun 13th, 2016
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.91 KB | None | 0 0
  1. // hi meowmer and impulse here we love u for using this
  2.  
  3.  
  4.  
  5. bulldozers = "namehere"
  6.  
  7. Instance.new("ForceField", game.Workspace[bulldozers])
  8. game.Workspace[bulldozers].Humanoid.WalkSpeed = 50
  9. function onTouch(part)
  10. local torso = part.Parent:findFirstChild("Torso")
  11. if (torso ~=nil) then
  12. torso.Velocity = Vector3.new(300,300,300)
  13. wait(.2)
  14. local explosion = Instance.new("Explosion", workspace)
  15. explosion.Position = (torso.Position)
  16. end
  17. end
  18.  
  19. function onTouchd(part)
  20. local part = part.Parent:findFirstChild("Part")
  21. if (part ~=nil) then
  22. part.Anchored = false
  23. part.Velocity = Vector3.new(300,300,300)
  24. wait(.2)
  25. local explosion = Instance.new("Explosion", workspace)
  26. explosion.Position = (part.Position)
  27. end
  28. end
  29.  
  30. game.Workspace[bulldozers].Torso.Touched:connect(onTouch)
  31. game.Workspace[bulldozers].Torso.Touched:connect(onTouchd)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement