Advertisement
TheUnknownDiscord

deaky but not mad

Oct 21st, 2021 (edited)
117
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. local model = Instance.new("Model", script)
  2. model.Name = "Happy Deaky"
  3. local humfake = Instance.new("Humanoid", model)
  4. humfake.MaxHealth = 0
  5. humfake.Health = 0
  6. local part1 = Instance.new("Part", model)
  7. part1.Shape = Enum.PartType.Ball
  8. part1.Size = Vector3.new(15, 15, 15)
  9. local part2 = Instance.new("Part", model)
  10. part2.Size = Vector3.new(30, 15, 1)
  11. local part3 = Instance.new("Part", model)
  12. part3.Size = Vector3.new(30, 15, 1)
  13. local part4 = Instance.new("Part", model)
  14. part4.Size = Vector3.new(1, 15, 30)
  15. local part5 = Instance.new("Part", model)
  16. part5.Size = Vector3.new(1, 15, 30)
  17. part1.Position = Vector3.new(15,7.5,20)
  18. part2.Position = Vector3.new(15,7.5,30)
  19. part3.Position = Vector3.new(15,7.5,0)
  20. part4.Position = Vector3.new(30,7.5,15)
  21. part5.Position = Vector3.new(0,7.5,15)
  22. part2.Anchored = true
  23. part3.Anchored = true
  24. part4.Anchored = true
  25. part5.Anchored = true
  26. part2.Transparency = 0.5
  27. part3.Transparency = 0.5
  28. part4.Transparency = 0.5
  29. part5.Transparency = 0.5
  30. part1.Name = "Head"
  31. decal = Instance.new("Decal", part1)
  32. decal.Face = Enum.NormalId.Front
  33. local happyFace = "http://www.roblox.com/asset/?id=7174894082"
  34. decal.Texture = happyFace
  35. part1.Material = "Slate"
  36. part1.Color = Color3.fromRGB(148, 43, 19)
  37. wait(0.1)
  38. local bp = Instance.new("BodyPosition", part1)
  39. bp.MaxForce = Vector3.new(100000,100000,100000)
  40. bp.P = 10000
  41. bp.D = 250
  42. local yes = Instance.new("Sound", part1)
  43. yes.SoundId = "rbxassetid://1664711438"
  44. yes.Volume = 0
  45. yes:Play()
  46. yes.Looped = true
  47. coroutine.wrap(function()
  48. while true do
  49. wait(0.5)
  50. bp.Position = part1.Position * Vector3.new(math.random(-100,100),0,math.random(-100,100))
  51. yes.Volume = part1.Velocity.Magnitude * 0.25
  52. end
  53. end)()
  54. local deakywallcollision = game:GetService("PhysicsService")
  55.  
  56. local deakywalls = {part2, part3, part4, part5}
  57. local deakywall = "DeakyWallslol"
  58. local deakylol = "DeakyLol"
  59. deakywallcollision:CreateCollisionGroup(deakywall)
  60. deakywallcollision:CreateCollisionGroup(deakylol)
  61. deakywallcollision:SetPartCollisionGroup(deakywalls, deakywall)
  62. deakywallcollision:SetPartCollisionGroup(part1, deakylol)
  63.  
  64. deakywallcollision:CollisionGroupSetCollidable(deakylol, deakywall, true)
  65. task.wait()
  66. part2.CanCollide = false
  67. part3.CanCollide = false
  68. part4.CanCollide = false
  69. part5.CanCollide = false
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement