Advertisement
RobloxScripty

Untitled

Jun 28th, 2017
102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.40 KB | None | 0 0
  1. me = workspace
  2. script.Parent = me
  3.  
  4. mo = Instance.new("Model")
  5. mo.Parent = me
  6. mo.Name = "60:60:60"
  7. hum = Instance.new("Humanoid")
  8. hum.Parent = mo
  9. hum.MaxHealth = 0
  10. hum.Health = 0
  11.  
  12. a = Instance.new("IntValue")
  13. a.Parent = mo
  14. a.Value = 0
  15.  
  16. b = Instance.new("IntValue")
  17. b.Parent = mo
  18. b.Value = 0
  19.  
  20. c = Instance.new("IntValue")
  21. c.Parent = mo
  22. c.Value = 1
  23.  
  24. part = Instance.new("Part")
  25. part.Parent = mo
  26. part.BrickColor = BrickColor.new("Really black")
  27. part.Size = Vector3.new(7, 3, 5)
  28. part.CFrame = CFrame.new(25, 1, 0)
  29. part.Anchored = true
  30. partm = Instance.new("BlockMesh")
  31. partm.Parent = part
  32. partm.Scale = Vector3.new(1, 1, 1)
  33.  
  34. par = Instance.new("Part")
  35. par.Parent = mo
  36. par.BrickColor = BrickColor.new("Really red")
  37. par.Size = Vector3.new(3, 4, 1)
  38. par.CFrame = CFrame.new(25, 1, 0)
  39. par.Anchored = true
  40. par.Name = "Head"
  41. parm = Instance.new("BlockMesh")
  42. parm.Parent = par
  43. parm.Scale = Vector3.new(1, 1, 1)
  44.  
  45.  
  46.  
  47. while true do
  48. wait()
  49. a.Value = a.Value - 1
  50. mo.Name = c.Value.. ":" ..b.Value.. ":" ..a.Value
  51. if a.Value == 0 then
  52. b.Value = b.Value - 1
  53. a.Value = 60
  54. end
  55. if b.Value == 0 then
  56. c.Value = c.Value - 1
  57. b.Value = 60
  58. end
  59. if c.Value == 0 and b.Value == 0 and a.Value == 0 then
  60. a.Value = 0
  61. b.Value = 0
  62. c.Value = 0
  63. exp = Instance.new("Explosion")
  64. exp.Parent = mo
  65. exp.Position = par.Position
  66. wait(1)
  67. mo:remove()
  68. end
  69. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement