Advertisement
Robloxian_Scripter

Untitled

Mar 24th, 2019
143
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.99 KB | None | 0 0
  1. Aura.Name = "Aura"
  2. Aura.Texture = "rbxassetid://641078192"
  3. Aura.Parent = CirclePart
  4. Aura.LightEmission = 0
  5. Aura.Transparency = NumberSequence.new(0.2,0.4,1)
  6. Aura.Color = ColorSequence.new(Color3.new(255/255, 255/255, 0/255),Color3.new(255/200, 200/200, 200/200))
  7. Aura.Size = NumberSequence.new(0.9,0.5,0.3)
  8. Aura.LockedToPart = false
  9. Aura.Lifetime = NumberRange.new(1)
  10. Aura.Rate = 50
  11. Aura.Speed = NumberRange.new(2.5)
  12. Aura.SpreadAngle = Vector2.new(80,80)
  13. local BlockMesh = Instance.new("BlockMesh")
  14. BlockMesh.Scale = Vector3.new(1, (1 + (0.005 * i)), 1)
  15. BlockMesh.Parent = CirclePart
  16. CirclePart.Parent = Circle
  17. local Star = Instance.new("Decal", CirclePart)
  18. Star.Texture = "http://www.roblox.com/asset/?id=253215684"
  19. Star.Face = "Top"
  20. local Light = Instance.new("PointLight", CirclePart)
  21. Light.Color = Color3.new(.20,0,0)
  22. Light.Brightness = 100
  23. Light.Range = 15
  24. table.insert(CircleParts, CirclePart)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement