Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local TweenService = game:GetService("TweenService")
- local ring = workspace.ring
- local HumanoidRootPart = workspace.StarterCharacter.HumanoidRootPart
- local CF = HumanoidRootPart.CFrame
- ring.Size = Vector3.new(1.16, 1.16, 0.1)
- ring.CFrame = CF * CFrame.new(0,-3.3,0)*CFrame.Angles(math.pi/2,0,0)
- ring.Transparency = 0
- TweenService:Create(ring,TweenInfo.new(.3),{
- Size = ring.Size * 5;
- }):Play()
- TweenService:Create(ring,TweenInfo.new(.2),{
- CFrame = CF * CFrame.new(0,-4,0)*CFrame.Angles(math.pi/2,0,0),
- Transparency = 1
- }):Play()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement