AA122294

Untitled

Jun 2nd, 2025
42
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.46 KB | None | 0 0
  1. script.Parent.Activated:Connect(function()
  2. local player = game.Players.LocalPlayer
  3. local char = game.Players.LocalPlayer.Character
  4. local pos = char.UpperTorso.Position
  5. local blue2 = game.ReplicatedStorage["Hollow Purple Windup"]["Hollow Purple : Blue"]:Clone()
  6. local red2 = game.ReplicatedStorage["Hollow Purple Windup"]["Hollow Purple : Red"]:Clone()
  7. local purple2 = game.ReplicatedStorage["Hollow Purple"].PrimaryPart:Clone()
  8. blue2.Parent = workspace
  9. red2.Parent = workspace
  10. purple2.Parent = workspace
  11. local blue = blue2
  12. local red = red2
  13. local purple = purple2
  14. blue.Position = player.Character.HumanoidRootPart.CFrame*Vector3.new(10,0,5)
  15. wait(2)
  16. red.Position = player.Character.HumanoidRootPart.CFrame*Vector3.new(-10,0,5)
  17. wait(0.01)
  18. blue.custom.Enabled = true
  19. wait(0.5)
  20. local target = Instance.new("Part")
  21. target.Position = player.Character.HumanoidRootPart.CFrame*Vector3.new(0,0,-5)
  22. local part = blue
  23.  
  24. local TweenService = game:GetService("TweenService")
  25.  
  26. local tweenInfo = TweenInfo.new(
  27.  
  28. 1, --Time
  29.  
  30. Enum.EasingStyle.Linear, --Easing Style
  31.  
  32. Enum.EasingDirection.Out, --EasingDirection
  33.  
  34. 0, --Repeat Count
  35.  
  36. false, --Reverse
  37.  
  38. 0 --DelayTime
  39.  
  40. )
  41. local tween = TweenService:Create(part, tweenInfo, {Position = target.Position})
  42. tween:Play()
  43.  
  44. local part = red
  45.  
  46. local TweenService = game:GetService("TweenService")
  47.  
  48. local tweenInfo = TweenInfo.new(
  49.  
  50. 1, --Time
  51.  
  52. Enum.EasingStyle.Linear, --Easing Style
  53.  
  54. Enum.EasingDirection.Out, --EasingDirection
  55.  
  56. 0, --Repeat Count
  57.  
  58. false, --Reverse
  59.  
  60. 0 --DelayTime
  61.  
  62. )
  63. local tween = TweenService:Create(part, tweenInfo, {Position = target.Position})
  64. tween:Play()
  65. wait(1)
  66. local target2 = Instance.new("Part")
  67. target2.Position = player.Character.HumanoidRootPart.CFrame*Vector3.new(0,10,-10)
  68. purple.Position = target2.Position
  69. purple.Orientation = char.Head.Orientation
  70. blue:Destroy()
  71. red:Destroy()
  72. local target3 = Instance.new("Part")
  73. target3.Position = player.Character.HumanoidRootPart.CFrame*Vector3.new(0,10,-1000)
  74. wait(0.5)
  75. local part = purple
  76.  
  77. local TweenService = game:GetService("TweenService")
  78.  
  79. local tweenInfo = TweenInfo.new(
  80.  
  81. 5, --Time
  82.  
  83. Enum.EasingStyle.Linear, --Easing Style
  84.  
  85. Enum.EasingDirection.Out, --EasingDirection
  86.  
  87. 0, --Repeat Count
  88.  
  89. false, --Reverse
  90.  
  91. 0 --DelayTime
  92.  
  93. )
  94. local tween = TweenService:Create(part, tweenInfo, {Position = target3.Position})
  95. tween:Play()
  96. wait(5)
  97. purple:Destroy()
  98. end)
Add Comment
Please, Sign In to add comment