Advertisement
AidenTheBuddy

NEKE

Apr 6th, 2018
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.92 KB | None | 0 0
  1. --Made by [NO[
  2. local Nuke = Instance.new("Part", Workspace)
  3. Nuke.CFrame = CFrame.new(0,0,0)
  4. Nuke.Name = "Nuke"
  5. Nuke.Locked = true
  6. Nuke.Shape = "Ball"
  7. Nuke.TopSurface = "Smooth"
  8. Nuke.BottomSurface = "Smooth"
  9. Nuke.BrickColor = BrickColor.new("Br. yellowish orange")
  10. Nuke.Transparency = 0.2
  11. local BMesh = Instance.new("SpecialMesh", Nuke)
  12. BMesh.Name = "SphereMesh"
  13. BMesh.MeshType = "Sphere"
  14.  
  15. Nuke.Touched:connect(function(Part)
  16. if Part.Locked == false then
  17. Part.Anchored = false
  18. Part:BreakJoints()
  19.  
  20. coroutine.resume(coroutine.create(function()
  21. while wait(0.05) do
  22. BMesh.Scale = BMesh.Scale + Vector3.new(0.1,0.1,0.1)
  23. end
  24. end))
  25.  
  26. coroutine.resume(coroutine.create(function()
  27. while wait(1) do
  28. Nuke.Size = Nuke.Size + Vector3.new(2,2,2)
  29. end
  30. end))
  31.  
  32. coroutine.resume(coroutine.create(function()
  33. while wait() do
  34. Nuke.CFrame = Vector3.new(0,0,0)
  35.  
  36. end
  37. end))
  38. end
  39. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement