Advertisement
HeartAccel

Fallen

Apr 21st, 2018
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 2.94 KB | None | 0 0
  1. wait(3)
  2. local Player = game.Players.LocalPlayer
  3. local Character = Player.Character
  4. print("Found local player ["..Player.Name.."], now initializing.")
  5.  
  6. for i,v in pairs(Character:GetChildren()) do
  7.     if v:IsA("Accessory") then
  8.         v:Destroy()
  9.     end
  10. end
  11.  
  12. Character.Head:FindFirstChild("face"):Destroy()
  13. --Character.Head:FindFirstChild("Mesh"):Destroy()
  14. Player:ClearCharacterAppearance()
  15.  
  16. for i,v in pairs(Character:GetChildren()) do
  17.     if v:IsA("BasePart") then
  18.         if v.Name == "Left Arm" or v.Name == "Left Leg" then
  19.             v.BrickColor = BrickColor.new("White")
  20.         else
  21.             v.BrickColor = BrickColor.new("Really black")
  22.         end
  23.         v.Material = "Neon"
  24.     end
  25. end
  26.  
  27. local leftLeg = Character:FindFirstChild("Left Leg")
  28.  
  29. local darkBarrier = Instance.new("Part", Character.Torso)
  30. local lightBarrier = Instance.new("Part", Character.Torso)
  31.  
  32. darkBarrier.Anchored = true
  33. darkBarrier.CanCollide = false
  34. darkBarrier.BrickColor = BrickColor.new("Really black")
  35. darkBarrier.Material = "Neon"
  36. darkBarrier.Shape = "Cylinder"
  37. darkBarrier.Orientation = Vector3.new(0,0,90)
  38.  
  39. music = Instance.new("Sound", Character.Torso)
  40. music.SoundId = "http://www.roblox.com/asset/?id=138210320"
  41. music.Volume = .1
  42. music.Playing = true
  43.  
  44. startSize = 0
  45.  
  46. while startSize < 100 do
  47.     darkBarrier.Size = Vector3.new(math.huge, startSize, startSize)
  48.     startSize = startSize + 2
  49.     wait(.02)
  50. end
  51.  
  52. while darkBarrier.Transparency < 1 do
  53.     darkBarrier.Transparency = darkBarrier.Transparency + .02
  54.     wait(.02)
  55. end
  56. darkBarrier.Size = Vector3.new(.1,7,7)
  57. darkBarrier.Transparency = 0
  58. lightBarrier.Anchored = true
  59. lightBarrier.CanCollide = false
  60. lightBarrier.BrickColor = BrickColor.new("White")
  61. lightBarrier.Material = "Neon"
  62. lightBarrier.Shape = "Cylinder"
  63. lightBarrier.Orientation = Vector3.new(0,0,90)
  64. startSize = 0
  65.  
  66. music2 = Instance.new("Sound", Character.Torso)
  67. music2.SoundId = "http://www.roblox.com/asset/?id=138210320"
  68. music2.Volume = .1
  69. music2.Playing = true
  70.  
  71. while startSize < 100 do
  72.     lightBarrier.Size = Vector3.new(math.huge, startSize, startSize)
  73.     startSize = startSize + 2
  74.     wait(.02)
  75. end
  76.  
  77. while lightBarrier.Transparency < 1 do
  78.     lightBarrier.Transparency = lightBarrier.Transparency + .02
  79.     wait(.02)
  80. end
  81. lightBarrier.Size = Vector3.new(.1,7,7)
  82. lightBarrier.Transparency = 0
  83.  
  84. xset = 0
  85. yset = 0
  86.  
  87.  
  88.  
  89. while true do
  90.     while xset < 5 do
  91.         darkBarrier.Position = Vector3.new(Character.Torso.Position.X,Character.Torso.Position.Y+xset,Character.Torso.Position.Z)
  92.         lightBarrier.Position = Vector3.new(Character.Torso.Position.X,Character.Torso.Position.Y+yset,Character.Torso.Position.Z)
  93.         wait(.02)
  94.         xset = xset + .2
  95.         yset = yset - .2
  96.     end
  97.     while xset > -5 do
  98.         darkBarrier.Position = Vector3.new(Character.Torso.Position.X,Character.Torso.Position.Y+xset,Character.Torso.Position.Z)
  99.         lightBarrier.Position = Vector3.new(Character.Torso.Position.X,Character.Torso.Position.Y+yset,Character.Torso.Position.Z)     
  100.         wait(.02)
  101.         xset = xset - .2
  102.         yset = yset + .2
  103.     end
  104. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement