Advertisement
DigitalZer3

Untitled

Oct 5th, 2015
185
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.58 KB | None | 0 0
  1. local plr = game.Players.LocalPlayer
  2.  
  3.  
  4. local Orb = Instance.new("Part", workspace)
  5. Orb.Anchored = true
  6. Orb.CanCollide = false
  7. Orb.BrickColor = BrickColor.new("Institutional white")
  8. Orb.Material = "Neon"
  9. Orb.Size = Vector3.new(1.3,1.3,1.3)
  10. Orb.Name = "Zynontic Server Orb"
  11. Orb.Shape = "Ball"
  12. Orb.TopSurface = "Smooth"
  13. Orb.BottomSurface = "Smooth"
  14.  
  15. local PointLight = Instance.new("PointLight", Orb)
  16. PointLight.Range = 10
  17.  
  18.  
  19. for i=1,360 do
  20. local tp = game.Workspace.DigitalZer3.Torso
  21.  
  22. wait()
  23.  
  24. Orb.CFrame = tp.CFrame*CFrame.Angles(0,math.rad(i),0)*CFrame.new(0,0,5)
  25. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement