Advertisement
SxScripting

Geppo Script #2

May 20th, 2023
699
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.54 KB | None | 0 0
  1. local TweenService = game:GetService("TweenService")
  2. local ring = workspace.ring
  3. local HumanoidRootPart = workspace.StarterCharacter.HumanoidRootPart
  4.  
  5. local CF = HumanoidRootPart.CFrame
  6.  
  7. ring.Size = Vector3.new(1.16, 1.16, 0.1)
  8. ring.CFrame = CF * CFrame.new(0,-3.3,0)*CFrame.Angles(math.pi/2,0,0)
  9. ring.Transparency = 0
  10.  
  11. TweenService:Create(ring,TweenInfo.new(.3),{
  12. Size = ring.Size * 5;
  13. }):Play()
  14.  
  15. TweenService:Create(ring,TweenInfo.new(.2),{
  16. CFrame = CF * CFrame.new(0,-4,0)*CFrame.Angles(math.pi/2,0,0),
  17. Transparency = 1
  18. }):Play()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement