Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- chr = workspace.supercoolguy53 --CHANGE NAME
- float = Instance.new("Part",chr)
- float.Anchored = true
- float.Transparency = 1
- float.Position = chr.Torso.Position + Vector3.new(0,10,0)
- model = Instance.new("Model")
- model.Parent = chr
- circle = Instance.new("Part",model)
- circle.Anchored = true
- circle.CanCollide = false
- circle.BrickColor = BrickColor.new(0,0,0) --COLOR
- circle.FormFactor = "Custom"
- circle.Size = Vector3.new(.2,5,.2) --SIZE CHANGE THE MIDDLE
- circle.Transparency = 1
- circle.Rotation = Vector3.new(-90,0,0)
- outline = Instance.new("SelectionBox",circle)
- outline.Adornee = circle
- outline.Color3 = Color3.new(1,1,1)
- outline.LineThickness = 0.001 --OUTLINE THICKNESS
- model.PrimaryPart = model.Part
- for i = 1,180 do
- game:GetService("RunService").RenderStepped:wait()
- float.Position = chr.Torso.Position + Vector3.new(0,10,0)
- model:SetPrimaryPartCFrame(float.CFrame)
- clone = circle:Clone()
- clone.Parent = model
- clone.Transparency = .7 --VISIBILITY
- clone.Position = float.Position
- clone.Rotation = Vector3.new(0,0,i)
- clone.Name = ("A"..i)
- end
- model.Parent = chr
- model.PrimaryPart = model.A1
- n=0
- x = 0
- while game:GetService("RunService").RenderStepped:wait() do
- n = n + 1 --ROTATION
- x = x + 1.5 --ROTATION
- float.Position = chr.Torso.Position + Vector3.new(0,10,0)
- if n == 360 then
- n = 0
- elseif x == 360 then
- x = 0
- end
- float.Rotation = Vector3.new(n,x,x)
- model:SetPrimaryPartCFrame(float.CFrame)
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement