Advertisement
Dfgjfj

Hollow purple

Dec 11th, 2024
615
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.56 KB | None | 0 0
  1. -- // This Code Was Writed By Allvideo
  2. local Player = game:GetService("Players")
  3. local TweenService = game:GetService("TweenService")
  4. local ServerStorage = game:GetService("ServerStorage")
  5. local Blue = ServerStorage:FindFirstChild("Blue")
  6. local Red = ServerStorage:FindFirstChild("Red")
  7. local Purple = ServerStorage:FindFirstChild("Purple")
  8. local Debounce = false
  9. function MakeTween(Part,Destination,Delay)
  10. local info = TweenInfo.new(Delay,Enum.EasingStyle.Linear,Enum.EasingDirection.In,0,false,0)
  11. local create = TweenService:Create(Part,info,{CFrame = Destination})
  12. create:Play()
  13. return create
  14. end
  15.  
  16. script.Parent.Activated:connect(function()
  17. if not Debounce then
  18. Debounce = true
  19. local char = script.Parent.Parent
  20. local LocalPlayer = Player:GetPlayerFromCharacter(char)
  21. local Humanoid = char:FindFirstChild("Humanoid")
  22. local launched = false
  23. if char and Red and Blue and Purple and Humanoid then
  24.  
  25. Humanoid.WalkSpeed = 0
  26. Humanoid.JumpPower = 0
  27. Humanoid.AutoRotate = false
  28. wait(2)
  29. local RedClone = Red:Clone()
  30. RedClone.Parent = char
  31. RedClone.Anchored = true
  32. RedClone.CFrame = char.HumanoidRootPart.CFrame * CFrame.new(5,0,-2)
  33.  
  34. wait(4)
  35.  
  36. local BlueClone = Blue:Clone()
  37. BlueClone.Parent = char
  38. BlueClone.Anchored = true
  39. BlueClone.CFrame = char.HumanoidRootPart.CFrame * CFrame.new(-5,0,-2)
  40. wait(2)
  41. local RedTween = MakeTween(RedClone,char.HumanoidRootPart.CFrame * CFrame.new(0,1,-5),3)
  42. local BlueTween = MakeTween(BlueClone,char.HumanoidRootPart.CFrame * CFrame.new(0,1,-5),3)
  43.  
  44. RedTween.Completed:connect(function()
  45. BlueClone:Destroy()
  46. RedClone:Destroy()
  47. Humanoid.AutoRotate = true
  48. local PurpleClone = Purple:Clone()
  49. PurpleClone.Parent = char
  50. PurpleClone.Anchored = true
  51. game:GetService("Debris"):AddItem(PurpleClone,20)
  52. while true do
  53. if not launched then
  54. PurpleClone.CFrame = char.HumanoidRootPart.CFrame * CFrame.new(0,1,-5)
  55. else
  56. PurpleClone.Touched:connect(function(hit)
  57. if hit.Parent:FindFirstChild("Humanoid") and hit.Parent ~= char then
  58. hit.Parent.Humanoid.Health = 0
  59. end
  60. end)
  61. PurpleClone.Anchored = false
  62. local BodyPosition = Instance.new("BodyPosition",PurpleClone)
  63. BodyPosition.MaxForce = Vector3.new(199999,199999,199999)
  64. BodyPosition.D = 1000
  65. BodyPosition.P = 5
  66. BodyPosition.Position = char.HumanoidRootPart.CFrame.LookVector * 99999
  67. break
  68. end
  69. wait()
  70. end
  71.  
  72. end)
  73.  
  74. wait(5)
  75. launched = true
  76.  
  77.  
  78. end
  79.  
  80.  
  81.  
  82.  
  83.  
  84. Humanoid.WalkSpeed = 16
  85. Humanoid.JumpPower = 50
  86. Humanoid.AutoRotate = true
  87. for i = 1,20 do
  88. script.Parent.Name = 20 - i
  89. wait(1)
  90. end
  91. Debounce = false
  92. end
  93. end)
  94.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement