Advertisement
SlappyDappyCrappy

dummycu chase

Apr 14th, 2018
174
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. target = game.Players.Chirirao_Takoazidio.Character
  2. victim = target.Head
  3. V = workspace['Default Dummy']
  4. V.Humanoid.WalkSpeed = 60
  5. local o = Instance.new('ForceField',V)
  6. o.Visible = false
  7. z = Instance.new("Sound", V.Head)
  8. z.SoundId = "rbxassetid://627722878" -- Put Music ID Here.
  9. z.Looped = true
  10. z.Volume = 10
  11. z.Pitch = 1.5
  12. wait(.1)
  13. z:Play()
  14. local bubblezone = Instance.new('Part',V)
  15. bubblezone.Size = Vector3.new(4.5,6,3.5)
  16. bubblezone.Transparency = .98
  17. bubblezone.Color = Color3.new(1,0,0)
  18. bubblezone.Material = "Glass"
  19. bubblezone.CanCollide = false
  20. bubblezone.Position = V.Head.Position
  21. w = Instance.new("Weld",V.Head)
  22. V.Head.CFrame = bubblezone.CFrame*CFrame.new(0,-3,0)
  23. w.C0 = V.Head.CFrame:inverse()
  24. w.C1 = bubblezone.CFrame:inverse()
  25. w.Part0 = bubblezone
  26. w.Part1 = V.Head
  27. bubblezone.Touched:connect(function(nou)
  28. if nou.Parent == V then
  29. else
  30. if nou.Parent:FindFirstChild("Humanoid") then
  31. nou.Parent:BreakJoints()
  32. end
  33. end
  34. end)
  35. V.Humanoid.Died:connect(function()
  36. local combust = Instance.new('Explosion',V.Head)
  37. combust.BlastRadius = 500
  38. combust.Position = V.Head.Position
  39. combust.BlastPressure = 50000
  40. combust.DestroyJointRadiusPercent = 10000
  41. end)
  42. while wait() do
  43. V.Humanoid.WalkToPoint = victim.Position
  44. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement