Advertisement
SlappyDappyCrappy

dummycu

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