Advertisement
Explosin59

vis

Jul 19th, 2017
185
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 2.73 KB | None | 0 0
  1. player = game.Players.LocalPlayer
  2. cframe = player.Character.HumanoidRootPart.CFrame
  3. Parts={}
  4. currentColor = BrickColor.new("Maroon")
  5. currentMat = "Granite"
  6. folder = Instance.new("Folder",player.Character)
  7. folder.Name = "Parts"
  8. for angle = 1, 45 do
  9.     local p = Instance.new('Part')
  10.     local m = Instance.new("BlockMesh")
  11.     m.Scale = Vector3.new(1.05,1,1) -- 10.5,1,1
  12.     m.Parent = p
  13.     p.Parent = folder
  14.     p.Size = Vector3.new(0.5,0.1,0.1)
  15.     p.CanCollide = false
  16.     p.Material = currentMat
  17.     p.BrickColor = currentColor
  18.     p.Anchored = true
  19.     p.CFrame = cframe                
  20.     table.insert(Parts,p)
  21. end
  22. tpThread = coroutine.create(function()
  23.     game:GetService('RunService').Heartbeat:connect(function()
  24.         local torp = player.Character.HumanoidRootPart.Position
  25.         local circumference = .5*#Parts
  26.         local answer = circumference/(math.pi*2)
  27.         for i,v in pairs(Parts) do
  28.             v.CFrame = v.CFrame:lerp(CFrame.new(torp.X, torp.Y-2.95, torp.Z) * CFrame.Angles(0, math.rad(i*(360/#Parts)), 0) * CFrame.new(0, 0, answer), .2) --2.2 for r15|-3 for r6/r5
  29.             v.Size = v.Size:lerp(Vector3.new(.5,.1,.1),.02)
  30.         end
  31.     end)
  32. end)
  33. function trim(str)
  34.     return (str:gsub("^%s*(.-)%s*$", "%1"))
  35. end
  36. function Split(inputstr,sep)
  37.     local t,i = {},1
  38.     for str in string.gmatch(inputstr, "([^"..sep.."]+)") do
  39.         t[i] = str
  40.         i = i + 1
  41.     end
  42.     return t
  43. end
  44.  
  45. player.Chatted:connect(function(m)
  46.     local c = Split(m," ")
  47.     if c[1] == "add" then
  48.         for i=1,tonumber(c[2]) do
  49.             local p = Instance.new("Part")
  50.             p.Size = Vector3.new(.5,.1,.1)
  51.             p.Material = currentMat
  52.             p.Anchored = true
  53.             p.CanCollide = false
  54.             p.BrickColor = currentColor
  55.             local m = Instance.new("BlockMesh")
  56.             m.Scale = Vector3.new(1.05,1,1)
  57.             p.Parent = player.Character.Head
  58.             m.Parent = p
  59.             p.CFrame = player.Character.HumanoidRootPart.CFrame
  60.             table.insert(Parts,p)
  61.             wait()
  62.         end
  63.     elseif c[1] == "rmv" then
  64.         for i=1,tonumber(c[2]) do
  65.             local Part = Parts[#Parts]
  66.             Part:Destroy()
  67.             table.remove(Parts,#Parts)
  68.             wait()
  69.         end
  70.     elseif c[1] == "mat" then
  71.         currentMat = c[2]
  72.         for i,v in pairs(Parts) do
  73.             v.Material = c[2]
  74.         end
  75.     elseif c[1] == "color" then
  76.         local send = ""
  77.         for i,v in pairs(c) do
  78.             if i ~= 1 then
  79.                 send = send..v.." "
  80.             end
  81.         end
  82.         send = trim(send)
  83.         currentColor = BrickColor.new(send)
  84.         for i,v in pairs(Parts) do
  85.             v.BrickColor = BrickColor.new(send)
  86.         end
  87.     end
  88. end)
  89. coroutine.resume(tpThread)
  90. sound = player.Character.Torso:WaitForChild("Music")
  91. spawn(function()
  92.     local SelectedPart = 0
  93.     while true do
  94.         if SelectedPart < #Parts then
  95.             SelectedPart = SelectedPart + 1
  96.         else
  97.             SelectedPart = 1
  98.         end
  99.         local sel = Parts[SelectedPart]
  100.         sel.Size = sel.Size:lerp(Vector3.new(.5,sound.PlaybackLoudness/80,.1),1)
  101.         wait()
  102.     end
  103. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement