Advertisement
JJHDerpster02

DEATH WALLS?!?!?

Apr 10th, 2017
135
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.08 KB | None | 0 0
  1. script.Parent=nil
  2. function load()
  3. m=Instance.new("Message",workspace)
  4. m.Text="HERE COME THE WALLS OF DEATH"
  5. wait(.3)
  6. m:Remove()
  7. aaaaa=Instance.new("Part",workspace)
  8. aaaaa.Size=Vector3.new(508,512,40)
  9. aaaaa.CFrame=CFrame.new(0,0,0)+Vector3.new(0,-400+512/2,256)
  10. aaaaa.BottomSurface="Smooth"
  11. aaaaa.Anchored=true
  12. aaaaa.Velocity=Vector3.new(0,0,-5)
  13. pcall(function()
  14. aaaaa.BrickColor=workspace.Base.BrickColor
  15. end)
  16. aaaaa.Name="Base"
  17. for i=1,24 do
  18. wait()
  19. Head=Instance.new("Part",workspace)
  20. Head.Name="Base"
  21. Head.BrickColor=aaaaa.BrickColor
  22. Head.Size=Vector3.new(512,512,44)
  23. Head.CFrame=CFrame.new(0,0,0)+Vector3.new(0,-400+512/2,256)
  24. Head.BottomSurface="Smooth"
  25. Head.Anchored=true
  26. Head.Transparency=1
  27. Head.CanCollide=false
  28. Hw = Instance.new("Weld")
  29. Hw.Parent = aaaaa
  30. Hw.Part0 = aaaaa
  31. Hw.Part1 = Head
  32. Hw.C0 = CFrame.new(0,0,0)
  33. end
  34. wait(7)
  35. local i=0
  36. while wait() do
  37. i=i+1
  38. aaaaa.CFrame=CFrame.new(0,0,0)+Vector3.new(0,-400+512/2,256-5*i)
  39. if i>=120 then
  40. aaaaa:Remove()
  41. load()
  42. end
  43. end
  44. end
  45. function onChatted(msg)
  46. if msg=="stopwod" then
  47. workspace.Base.Parent=game.Lighting
  48. for i,v in pairs(workspace:children()) do
  49. if v.Name=="Base" then
  50. v:Remove()
  51. end
  52. end
  53. game.Lighting.Base.Parent=game.Workspace
  54. print("Stopped")
  55. load = nil
  56. script.Disabled=true
  57. script:Destroy()
  58. end
  59. end
  60. game.Players.LocalPlayer.Chatted:connect(onChatted)
  61. load()
  62.  
  63. --mediafire
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement